mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-11 22:29:37 +00:00
849acf0064
Summary: This is not possible when using the IAS for MIPS, but it is possible when using the IAS for other architectures and when using GAS for MIPS. Reviewers: dsanders Reviewed By: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8578 llvm-svn: 234316
19 lines
287 B
ArmAsm
19 lines
287 B
ArmAsm
# RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \
|
|
# RUN: llvm-objdump -d -r -arch=mips - | FileCheck %s
|
|
|
|
.global foo
|
|
.weak bar
|
|
.set bar, b
|
|
.set foo, b
|
|
.set foo, a
|
|
a:
|
|
nop
|
|
# CHECK-NOT: a:
|
|
# CHECK: foo:
|
|
|
|
b:
|
|
nop
|
|
# CHECK-NOT: b:
|
|
# CHECK-NOT: foo:
|
|
# CHECK: bar:
|