mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 20:06:46 +00:00
fffff915d5
since they are allowed to be redefined. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84230 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
271 B
ArmAsm
16 lines
271 B
ArmAsm
// RUN: llvm-mc %s
|
|
|
|
.data
|
|
t0_v0 = 1
|
|
t0_v1 = t0_v0
|
|
.if t0_v1 != 1
|
|
.abort "invalid value"
|
|
.endif
|
|
|
|
t1_v0 = 1
|
|
t1_v1 = t0_v0
|
|
t1_v0 = 2
|
|
.if t0_v1 != 1
|
|
.abort "invalid value"
|
|
.endif
|