diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-02-11 21:31:55 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-02-11 21:31:55 +0000 |
commit | 860a84d65a556dfce7e2ce9b35dc1f8dd125bbad (patch) | |
tree | 46b4ffce6012b58f2140840abe8ec330b451cafa /llvm | |
parent | f3c0ff730b2b86f499ae151449327bb0fc94b8ce (diff) | |
download | bcm5719-llvm-860a84d65a556dfce7e2ce9b35dc1f8dd125bbad.tar.gz bcm5719-llvm-860a84d65a556dfce7e2ce9b35dc1f8dd125bbad.zip |
Tidy out asm matcher .inc output.
llvm-svn: 125408
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/utils/TableGen/AsmMatcherEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/AsmMatcherEmitter.cpp b/llvm/utils/TableGen/AsmMatcherEmitter.cpp index 776ab6382e0..ae817d577d2 100644 --- a/llvm/utils/TableGen/AsmMatcherEmitter.cpp +++ b/llvm/utils/TableGen/AsmMatcherEmitter.cpp @@ -2110,7 +2110,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) { // Information for the class declaration. OS << "\n#ifdef GET_ASSEMBLER_HEADER\n"; OS << "#undef GET_ASSEMBLER_HEADER\n"; - OS << " // This should be included into the middle of the declaration of \n"; + OS << " // This should be included into the middle of the declaration of\n"; OS << " // your subclasses implementation of TargetAsmParser.\n"; OS << " unsigned ComputeAvailableFeatures(const " << Target.getName() << "Subtarget *Subtarget) const;\n"; @@ -2291,7 +2291,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) { OS << " // Some state to try to produce better error messages.\n"; OS << " bool HadMatchOtherThanFeatures = false;\n\n"; - OS << " // Set ErrorInfo to the operand that mismatches if it is \n"; + OS << " // Set ErrorInfo to the operand that mismatches if it is\n"; OS << " // wrong for all instances of the instruction.\n"; OS << " ErrorInfo = ~0U;\n"; |