2017-08-02 08:28:10 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-pc-linux -enable-misched=false | FileCheck %s
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-pc-linux-gnux32 -enable-misched=false | FileCheck %s -check-prefix=X32ABI
|
2007-07-19 00:29:46 +08:00
|
|
|
|
|
|
|
declare void @bar(<2 x i64>* %n)
|
|
|
|
|
2010-05-28 09:14:11 +08:00
|
|
|
define void @foo(i64 %h) {
|
|
|
|
%p = alloca <2 x i64>, i64 %h
|
2007-07-19 00:29:46 +08:00
|
|
|
call void @bar(<2 x i64>* %p)
|
|
|
|
ret void
|
2014-08-07 17:41:19 +08:00
|
|
|
; CHECK-LABEL: foo
|
2012-06-23 07:04:02 +08:00
|
|
|
; CHECK-NOT: andq $-32, %rax
|
2014-08-07 17:41:19 +08:00
|
|
|
; X32ABI-LABEL: foo
|
|
|
|
; X32ABI-NOT: andl $-32, %eax
|
2007-07-19 00:29:46 +08:00
|
|
|
}
|
2007-08-17 07:51:28 +08:00
|
|
|
|
2010-05-28 09:14:11 +08:00
|
|
|
define void @foo2(i64 %h) {
|
|
|
|
%p = alloca <2 x i64>, i64 %h, align 32
|
2007-08-17 07:51:28 +08:00
|
|
|
call void @bar(<2 x i64>* %p)
|
|
|
|
ret void
|
2014-08-07 17:41:19 +08:00
|
|
|
; CHECK-LABEL: foo2
|
2012-07-11 01:45:53 +08:00
|
|
|
; CHECK: andq $-32, %rsp
|
2012-06-23 07:04:02 +08:00
|
|
|
; CHECK: andq $-32, %rax
|
2014-08-07 17:41:19 +08:00
|
|
|
; X32ABI-LABEL: foo2
|
|
|
|
; X32ABI: andl $-32, %esp
|
|
|
|
; X32ABI: andl $-32, %eax
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @foo3(i64 %h) {
|
|
|
|
%p = alloca <2 x i64>, i64 %h
|
|
|
|
ret void
|
|
|
|
; CHECK-LABEL: foo3
|
|
|
|
; CHECK: movq %rbp, %rsp
|
|
|
|
; X32ABI-LABEL: foo3
|
|
|
|
; X32ABI: movl %ebp, %esp
|
2007-08-17 07:51:28 +08:00
|
|
|
}
|