diff options
Diffstat (limited to 'llvm/test/MC/AsmParser/variables-invalid.s')
| -rw-r--r-- | llvm/test/MC/AsmParser/variables-invalid.s | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/test/MC/AsmParser/variables-invalid.s b/llvm/test/MC/AsmParser/variables-invalid.s index 9656889c5b1..c0f6c398767 100644 --- a/llvm/test/MC/AsmParser/variables-invalid.s +++ b/llvm/test/MC/AsmParser/variables-invalid.s @@ -2,7 +2,7 @@ // RUN: FileCheck --input-file %t %s .data -// CHECK: invalid assignment to 't0_v0' +// CHECK: Recursive use of 't0_v0' t0_v0 = t0_v0 + 1 t1_v1 = 1 @@ -15,3 +15,9 @@ t2_s0: t3_s0 = t2_s0 + 1 // CHECK: invalid reassignment of non-absolute variable 't3_s0' t3_s0 = 1 + + +// CHECK: Recursive use of 't4_s2' + t4_s0 = t4_s1 + t4_s1 = t4_s2 + t4_s2 = t4_s0 |

