2013-10-16 07:33:07 +08:00
|
|
|
; RUN: llc < %s -march=x86-64 -mtriple=i686-pc-linux -enable-misched=false | FileCheck %s
|
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
|
2012-06-23 07:04:02 +08:00
|
|
|
; CHECK: foo
|
|
|
|
; CHECK-NOT: andq $-32, %rax
|
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
|
2012-06-23 07:04:02 +08:00
|
|
|
; CHECK: 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
|
2007-08-17 07:51:28 +08:00
|
|
|
}
|