[llvm-commits] [llvm] r94781 - /llvm/trunk/utils/TableGen/EDEmitter.cpp
Sean Callanan
scallanan at apple.com
Thu Jan 28 17:34:29 PST 2010
Author: spyffe
Date: Thu Jan 28 19:34:29 2010
New Revision: 94781
URL: http://llvm.org/viewvc/llvm-project?rev=94781&view=rev
Log:
Quick fix to make the header file for the enhanced
disassembly information have a better comment (and
better guard macros).
Modified:
llvm/trunk/utils/TableGen/EDEmitter.cpp
Modified: llvm/trunk/utils/TableGen/EDEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/EDEmitter.cpp?rev=94781&r1=94780&r2=94781&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/EDEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/EDEmitter.cpp Thu Jan 28 19:34:29 2010
@@ -808,10 +808,10 @@
}
void EDEmitter::runHeader(raw_ostream &o) {
- EmitSourceFileHeader("Semantic Information Header", o);
+ EmitSourceFileHeader("Enhanced Disassembly Info Header", o);
- o << "#ifndef SemanticInfo_" << "\n";
- o << "#define SemanticInfo_" << "\n";
+ o << "#ifndef EDInfo_" << "\n";
+ o << "#define EDInfo_" << "\n";
o << "\n";
o << "#include <inttypes.h>" << "\n";
o << "\n";
More information about the llvm-commits
mailing list