Quick fix to make the header file for the enhanced

disassembly information have a better comment (and
better guard macros).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sean Callanan 2010-01-29 01:34:29 +00:00
parent bd51cdd067
commit 9988ab0496

View File

@ -808,10 +808,10 @@ void EDEmitter::run(raw_ostream &o) {
}
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";