mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
3c733ea064
This matches what gnu as does and implementing this is easier than arguing about it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199181 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
350 B
LLVM
13 lines
350 B
LLVM
; This tests value of ELF st_other field for function symbol table entries.
|
|
; For microMIPS value should be equal to STO_MIPS_MICROMIPS.
|
|
|
|
; RUN: llc -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+micromips -print-hack-directives %s -o - | FileCheck %s
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK: .set micromips
|
|
; CHECK: main:
|