blob: 7b95325f562d31d26cc50c54013efa421fe70b80 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | ; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -fast-isel -fast-isel-abort=1 | FileCheck %s
; RUN: llc < %s -mtriple=x86_64-nacl -fast-isel -fast-isel-abort=1 | FileCheck %s
; Test that alloca addresses are materialized with the right size instruction.
declare void @bar(i32* %arg)
; CHECK-LABEL: @foo
define void @foo() {
  %a = alloca i32
; CHECK: leal {{.*}}, %edi
  call void @bar(i32* %a)
  ret void
}
 |