From 8b01c82f25aaea12340f53789ba59a2527713b9e Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 28 Jan 2012 06:22:14 +0000 Subject: Small improvement to the recursion detection logic from the previous commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149175 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/AsmParser/variables-invalid.s | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/MC/AsmParser/variables-invalid.s b/test/MC/AsmParser/variables-invalid.s index c0f6c39..21758d2 100644 --- a/test/MC/AsmParser/variables-invalid.s +++ b/test/MC/AsmParser/variables-invalid.s @@ -21,3 +21,7 @@ t2_s0: t4_s0 = t4_s1 t4_s1 = t4_s2 t4_s2 = t4_s0 + +// CHECK: Recursive use of 't5_s1' + t5_s0 = t5_s1 + 1 + t5_s1 = t5_s0 -- cgit v1.1