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
16
external/llvm/test/CodeGen/Mips/micromips-directives.ll
vendored
Normal file
16
external/llvm/test/CodeGen/Mips/micromips-directives.ll
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
; 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:
|
Reference in New Issue
Block a user