Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -O0 | FileCheck %s
      2 ; CHECK: leal {{[-0-9]*}}(%r{{s|b}}p),
      3 ; CHECK-NOT: leal {{[-0-9]*}}(%e{{s|b}}p),
      4 
      5 define void @foo(i32** %p) {
      6   %a = alloca i32, i32 10
      7   %addr = getelementptr i32, i32* %a, i32 4
      8   store i32* %addr, i32** %p
      9   ret void
     10 }
     11