summaryrefslogtreecommitdiff
path: root/utils/TableGen/AsmMatcherEmitter.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-02-11 21:31:55 +0000
committerJim Grosbach <grosbach@apple.com>2011-02-11 21:31:55 +0000
commit84cb033bf30b6f93ae2fbea71513970147e08dc2 (patch)
tree6aaaf9efcb35df36fd13f313d30158f1d6714fb2 /utils/TableGen/AsmMatcherEmitter.cpp
parent63cc3a85cc10093f83f76ea9192f77929b58569e (diff)
downloadllvm-84cb033bf30b6f93ae2fbea71513970147e08dc2.tar.gz
llvm-84cb033bf30b6f93ae2fbea71513970147e08dc2.tar.bz2
llvm-84cb033bf30b6f93ae2fbea71513970147e08dc2.tar.xz
Tidy out asm matcher .inc output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/AsmMatcherEmitter.cpp')
-rw-r--r--utils/TableGen/AsmMatcherEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/AsmMatcherEmitter.cpp b/utils/TableGen/AsmMatcherEmitter.cpp
index 776ab6382e..ae817d577d 100644
--- a/utils/TableGen/AsmMatcherEmitter.cpp
+++ b/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";