You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
19
external/llvm/test/CodeGen/Mips/stack-alignment.ll
vendored
Normal file
19
external/llvm/test/CodeGen/Mips/stack-alignment.ll
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=32
|
||||
; RUN: llc -march=mipsel -stack-alignment=32 < %s | FileCheck %s -check-prefix=A32-32
|
||||
; RUN: llc -march=mipsel -mattr=+fp64 < %s | FileCheck %s -check-prefix=32
|
||||
; RUN: llc -march=mips64el -mcpu=mips3 < %s | FileCheck %s -check-prefix=64
|
||||
; RUN: llc -march=mips64el -mcpu=mips4 < %s | FileCheck %s -check-prefix=64
|
||||
; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s -check-prefix=64
|
||||
; RUN: llc -march=mips64el -mcpu=mips64 -stack-alignment=32 < %s | FileCheck %s -check-prefix=A32-64
|
||||
|
||||
; 32: addiu $sp, $sp, -8
|
||||
; 64: daddiu $sp, $sp, -16
|
||||
; A32-32: addiu $sp, $sp, -32
|
||||
; A32-64: daddiu $sp, $sp, -32
|
||||
|
||||
define i32 @foo1() #0 {
|
||||
entry:
|
||||
ret i32 14
|
||||
}
|
||||
|
||||
attributes #0 = { "no-frame-pointer-elim"="true" }
|
Reference in New Issue
Block a user