From: Chris Lattner Date: Wed, 30 Jul 2003 20:55:37 +0000 (+0000) Subject: Add test of file inclusion capability for bugpoint X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dfe9a70c6675dc2f6c15234bcd112ed0cd7026f3;p=oota-llvm.git Add test of file inclusion capability for bugpoint git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7435 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/TableGen/Include.inc b/test/TableGen/Include.inc new file mode 100644 index 00000000000..876bf47ca96 --- /dev/null +++ b/test/TableGen/Include.inc @@ -0,0 +1,4 @@ +// This is used by the Include.td test +def InInclude; + + diff --git a/test/TableGen/Include.td b/test/TableGen/Include.td new file mode 100644 index 00000000000..2618d571589 --- /dev/null +++ b/test/TableGen/Include.td @@ -0,0 +1,7 @@ + +def BeforeInclude; + +include "Include.inc" + +def AfterInclude; +