You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
; This test checks if the '.set [no]micromips' directives
|
|
; are emitted before a function's entry label.
|
|
|
|
; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips %s -o - | \
|
|
; RUN: FileCheck %s -check-prefix=CHECK-MM
|
|
; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=-micromips %s -o - | \
|
|
; RUN: FileCheck %s -check-prefix=CHECK-NO-MM
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-MM: .set micromips
|
|
; CHECK-NO-MM: .set nomicromips
|
|
; CHECK: main:
|