2017-08-02 00:28:10 +00: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-18 16:29:46 +00:00
|
|
|
|
|
|
|
declare void @bar(<2 x i64>* %n)
|
|
|
|
|
2010-05-28 01:14:11 +00:00
|
|
|
define void @foo(i64 %h) {
|
|
|
|
%p = alloca <2 x i64>, i64 %h
|
2007-07-18 16:29:46 +00:00
|
|
|
call void @bar(<2 x i64>* %p)
|
|
|
|
ret void
|
2014-08-07 09:41:19 +00:00
|
|
|
; CHECK-LABEL: foo
|
2012-06-22 23:04:02 +00:00
|
|
|
; CHECK-NOT: andq $-32, %rax
|
2014-08-07 09:41:19 +00:00
|
|
|
; X32ABI-LABEL: foo
|
|
|
|
; X32ABI-NOT: andl $-32, %eax
|
2007-07-18 16:29:46 +00:00
|
|
|
}
|
2007-08-16 23:51:28 +00:00
|
|
|
|
2010-05-28 01:14:11 +00:00
|
|
|
define void @foo2(i64 %h) {
|
|
|
|
%p = alloca <2 x i64>, i64 %h, align 32
|
2007-08-16 23:51:28 +00:00
|
|
|
call void @bar(<2 x i64>* %p)
|
|
|
|
ret void
|
2014-08-07 09:41:19 +00:00
|
|
|
; CHECK-LABEL: foo2
|
2012-07-10 17:45:53 +00:00
|
|
|
; CHECK: andq $-32, %rsp
|
2012-06-22 23:04:02 +00:00
|
|
|
; CHECK: andq $-32, %rax
|
2014-08-07 09:41:19 +00: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-16 23:51:28 +00:00
|
|
|
}
|