Quick fix to make the header file for the enhanced

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

llvm-svn: 94781
This commit is contained in:
Sean Callanan 2010-01-29 01:34:29 +00:00
parent 5d23b70461
commit 2112298100

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";