summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-03 18:12:59 +0000
committerChris Lattner <sabre@nondot.org>2003-08-03 18:12:59 +0000
commitbc1f0dc7ebf9b60e26459ab44b543755560041f5 (patch)
treecc1c820b09b0a90ae566f8dddcf932659d9549f1 /support
parent49136e123d27e42d3b067b425baa58af0d983528 (diff)
downloadllvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.tar.gz
llvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.tar.bz2
llvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.tar.xz
expand contraction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support')
-rw-r--r--support/tools/TableGen/FileLexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/tools/TableGen/FileLexer.l b/support/tools/TableGen/FileLexer.l
index a98a88170e..ad4bd77703 100644
--- a/support/tools/TableGen/FileLexer.l
+++ b/support/tools/TableGen/FileLexer.l
@@ -50,7 +50,7 @@ std::ostream &err() {
return std::cerr << "At end of input: ";
for (unsigned i = 0, e = IncludeStack.size()-1; i != e; ++i)
- std::cerr << "IncFrom " << IncludeStack[i].Filename << ":"
+ std::cerr << "Included from " << IncludeStack[i].Filename << ":"
<< IncludeStack[i].LineNo << ":\n";
return std::cerr << "Parsing " << IncludeStack.back().Filename << ":"
<< Filelineno << ": ";