You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
14
external/llvm/test/CodeGen/X86/fast-isel-x32.ll
vendored
Normal file
14
external/llvm/test/CodeGen/X86/fast-isel-x32.ll
vendored
Normal file
@ -0,0 +1,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
|
||||
}
|
Reference in New Issue
Block a user