llvm-6502/test/CodeGen/Mips/micromips-directives.ll
Matheus Almeida 8e0f5768a6 [mips] Emit '.set nomicromips' before a function's entry label
if not in micromips mode.

The test (elf_st_other.ll) was renamed as the name and description didn't
make sense as the test wasn't checking any symbol table entry.

Differential Revision: http://reviews.llvm.org/D3346



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206377 91177308-0d34-0410-b5e6-96231b3b80d8
2014-04-16 11:46:59 +00:00

17 lines
498 B
LLVM

; 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: