[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / fast-isel-x32.ll
blob23f6304c88d28485ba02fc9f9ee7b2b2c21e5b19
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(ptr %arg)
8 ; CHECK-LABEL: @foo
9 define void @foo() {
10   %a = alloca i32
11 ; CHECK: leal {{.*}}, %edi
12   call void @bar(ptr %a)
13   ret void