mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +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
18 lines
275 B
ArmAsm
18 lines
275 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o -| llvm-readobj -t | FileCheck %s
|
|
|
|
|
|
.globl f1
|
|
.set micromips
|
|
f1:
|
|
nop
|
|
|
|
.globl f2
|
|
.set nomicromips
|
|
f2:
|
|
nop
|
|
|
|
// CHECK-LABEL: Name: f1
|
|
// CHECK: Other: 128
|
|
// CHECK-LABEL: Name: f2
|
|
// CHECK: Other: 0
|