You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
35
external/llvm/test/CodeGen/X86/alloca-align-rounding.ll
vendored
Normal file
35
external/llvm/test/CodeGen/X86/alloca-align-rounding.ll
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
; 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
|
||||
|
||||
declare void @bar(<2 x i64>* %n)
|
||||
|
||||
define void @foo(i64 %h) {
|
||||
%p = alloca <2 x i64>, i64 %h
|
||||
call void @bar(<2 x i64>* %p)
|
||||
ret void
|
||||
; CHECK-LABEL: foo
|
||||
; CHECK-NOT: andq $-32, %rax
|
||||
; X32ABI-LABEL: foo
|
||||
; X32ABI-NOT: andl $-32, %eax
|
||||
}
|
||||
|
||||
define void @foo2(i64 %h) {
|
||||
%p = alloca <2 x i64>, i64 %h, align 32
|
||||
call void @bar(<2 x i64>* %p)
|
||||
ret void
|
||||
; CHECK-LABEL: foo2
|
||||
; CHECK: andq $-32, %rsp
|
||||
; CHECK: andq $-32, %rax
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user