summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-09-08 05:23:14 +0000
committerAndrew Trick <atrick@apple.com>2011-09-08 05:23:14 +0000
commited968a9a045cb6fecb80abfb7e938954fed54927 (patch)
tree67ca197933ae87231409a5b873160138a7535196 /utils
parent184166da619ac7f14d8460b4b0f8f85bfc601ebc (diff)
downloadllvm-ed968a9a045cb6fecb80abfb7e938954fed54927.tar.gz
llvm-ed968a9a045cb6fecb80abfb7e938954fed54927.tar.bz2
llvm-ed968a9a045cb6fecb80abfb7e938954fed54927.tar.xz
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/FixedLenDecoderEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/FixedLenDecoderEmitter.cpp b/utils/TableGen/FixedLenDecoderEmitter.cpp
index 27a5587031..c0b51385b1 100644
--- a/utils/TableGen/FixedLenDecoderEmitter.cpp
+++ b/utils/TableGen/FixedLenDecoderEmitter.cpp
@@ -749,7 +749,7 @@ void FilterChooser::emitBinaryParser(raw_ostream &o, unsigned &Indentation,
for (OperandInfo::iterator OI = OpInfo.begin(), OE = OpInfo.end();
OI != OE; ++OI) {
o.indent(Indentation) << " tmp |= (fieldFromInstruction" << BitWidth
- << "(insn, " << OI->Base << ", " << OI->Width
+ << "(insn, " << OI->Base << ", " << OI->Width
<< ") << " << OI->Offset << ");\n";
}
}
@@ -797,7 +797,7 @@ bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
}
return Predicates->getSize() > 0;
-}
+}
// Emits code to decode the singleton. Return true if we have matched all the
// well-known bits.