diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-03 18:12:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-03 18:12:59 +0000 |
commit | bc1f0dc7ebf9b60e26459ab44b543755560041f5 (patch) | |
tree | cc1c820b09b0a90ae566f8dddcf932659d9549f1 /support/tools/TableGen | |
parent | 49136e123d27e42d3b067b425baa58af0d983528 (diff) | |
download | external_llvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.zip external_llvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.tar.gz external_llvm-bc1f0dc7ebf9b60e26459ab44b543755560041f5.tar.bz2 |
expand contraction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support/tools/TableGen')
-rw-r--r-- | support/tools/TableGen/FileLexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/tools/TableGen/FileLexer.l b/support/tools/TableGen/FileLexer.l index a98a881..ad4bd77 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 << ": "; |