diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-05-24 22:17:36 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-05-24 22:17:36 +0000 |
commit | 72cba6cdf640411e2fb6207858a0abd87c4286fc (patch) | |
tree | ea65f3d9cbaba881b40a3be74efdafb0b579f19f /test/TableGen/ForeachLoop.td | |
parent | 8e5286e18ffbe4716ef92cd1de8901942d685e1b (diff) |
Don't put TGParser scratch results in the output.
Only fully expanded Records should go into RecordKeeper.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/ForeachLoop.td')
-rw-r--r-- | test/TableGen/ForeachLoop.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/TableGen/ForeachLoop.td b/test/TableGen/ForeachLoop.td index e2defe9cfe..342609643c 100644 --- a/test/TableGen/ForeachLoop.td +++ b/test/TableGen/ForeachLoop.td @@ -9,6 +9,7 @@ class Register<string name, int idx> { foreach i = [0, 1, 2, 3, 4, 5, 6, 7] in def R#i : Register<"R"#i, i>; +// CHECK-NOT: !strconcat // CHECK: def R0 // CHECK: string Name = "R0"; |