commit | 67db883487fca3472fdde51e931657e22d4d0495 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Dec 13 00:23:57 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Dec 13 00:23:57 2010 +0000 |
tree | 18ad5bbf8c061c1ed7c732a4af1f864fe7206700 | |
parent | 9d6250f52ba4ba0a34d44aa2cc9d3fa14c15a006 [diff] [blame] |
eliminate the Records global variable, patch by Garrison Venn! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121659 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/InstrEnumEmitter.cpp b/utils/TableGen/InstrEnumEmitter.cpp index 47a8474..aa59689 100644 --- a/utils/TableGen/InstrEnumEmitter.cpp +++ b/utils/TableGen/InstrEnumEmitter.cpp
@@ -23,7 +23,7 @@ EmitSourceFileHeader("Target Instruction Enum Values", OS); OS << "namespace llvm {\n\n"; - CodeGenTarget Target; + CodeGenTarget Target(Records); // We must emit the PHI opcode first... std::string Namespace = Target.getInstNamespace();