mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
e6e64c63b4
The GNU as behavior is a bit different and very strange. It will mark any label that contains an instruction. We can implement that, but using the type looks more natural since gas will not mark a function if a .word is used to output the instructions! llvm-svn: 199287
27 lines
407 B
ArmAsm
27 lines
407 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o -| llvm-readobj -t | FileCheck %s
|
|
|
|
|
|
.globl f1
|
|
.type f1, @function
|
|
.set micromips
|
|
f1:
|
|
nop
|
|
|
|
.globl d1
|
|
.type d1, @object
|
|
d1:
|
|
.word 42
|
|
|
|
.globl f2
|
|
.type f2, @function
|
|
.set nomicromips
|
|
f2:
|
|
nop
|
|
|
|
// CHECK-LABEL: Name: d1
|
|
// CHECK: Other: 0
|
|
// CHECK-LABEL: Name: f1
|
|
// CHECK: Other: 128
|
|
// CHECK-LABEL: Name: f2
|
|
// CHECK: Other: 0
|