[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / fast-isel-x32.ll
blob7b95325f562d31d26cc50c54013efa421fe70b80
1 ; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -fast-isel -fast-isel-abort=1 | FileCheck %s
2 ; RUN: llc < %s -mtriple=x86_64-nacl -fast-isel -fast-isel-abort=1 | FileCheck %s
4 ; Test that alloca addresses are materialized with the right size instruction.
6 declare void @bar(i32* %arg)
8 ; CHECK-LABEL: @foo
9 define void @foo() {
10   %a = alloca i32
11 ; CHECK: leal {{.*}}, %edi
12   call void @bar(i32* %a)
13   ret void