projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a28405
)
Add a test that you can forward ref a class.
author
Chris Lattner
<sabre@nondot.org>
Fri, 30 Sep 2005 04:52:43 +0000
(
04:52
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 30 Sep 2005 04:52:43 +0000
(
04:52
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23547
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/TableGen/ForwardRef.td
patch
|
blob
|
history
diff --git
a/test/TableGen/ForwardRef.td
b/test/TableGen/ForwardRef.td
index 57de9d25c8db831d709eec6524f8abcde8266614..2056b1faff35dcdc2d123a3a3c4fef173847646d 100644
(file)
--- a/
test/TableGen/ForwardRef.td
+++ b/
test/TableGen/ForwardRef.td
@@
-4,3
+4,12
@@
class bar {
list<bar> x;
}
+class foo;
+class foo;
+
+class baz { list<foo> y; }
+
+class foo {
+
+}
+