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