2013-10-30 03:29:03 +08:00
|
|
|
; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=32
|
2017-08-15 05:49:38 +08:00
|
|
|
; RUN: llc -march=mipsel -stack-alignment=32 < %s | FileCheck %s -check-prefix=A32-32
|
2013-11-12 05:49:03 +08:00
|
|
|
; RUN: llc -march=mipsel -mattr=+fp64 < %s | FileCheck %s -check-prefix=32
|
2017-08-12 06:07:56 +08:00
|
|
|
; RUN: llc -march=mips64el -mcpu=mips3 < %s | FileCheck %s -check-prefix=64
|
|
|
|
; RUN: llc -march=mips64el -mcpu=mips4 < %s | FileCheck %s -check-prefix=64
|
2013-10-30 03:29:03 +08:00
|
|
|
; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s -check-prefix=64
|
2017-08-15 05:49:38 +08:00
|
|
|
; RUN: llc -march=mips64el -mcpu=mips64 -stack-alignment=32 < %s | FileCheck %s -check-prefix=A32-64
|
2013-10-30 03:29:03 +08:00
|
|
|
|
|
|
|
; 32: addiu $sp, $sp, -8
|
2017-08-12 06:07:56 +08:00
|
|
|
; 64: daddiu $sp, $sp, -16
|
2017-08-15 05:49:38 +08:00
|
|
|
; A32-32: addiu $sp, $sp, -32
|
|
|
|
; A32-64: daddiu $sp, $sp, -32
|
2013-10-30 03:29:03 +08:00
|
|
|
|
|
|
|
define i32 @foo1() #0 {
|
|
|
|
entry:
|
|
|
|
ret i32 14
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes #0 = { "no-frame-pointer-elim"="true" }
|