Skip to content

Commit

Permalink
clang-format a couple of lines
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238268 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
filcab committed May 27, 2015
1 parent c756772 commit ba7ccd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Bitcode/Reader/BitstreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ unsigned BitstreamCursor::readRecord(unsigned AbbrevID,
unsigned NumElts = ReadVBR(6);

// Get the element encoding.
if (i+2 != e)
report_fatal_error("Array op not second to last");
if (i + 2 != e)
report_fatal_error("Array op not second to last");
const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
if (EltEnc.getEncoding() == BitCodeAbbrevOp::Array ||
EltEnc.getEncoding() == BitCodeAbbrevOp::Blob)
Expand Down

0 comments on commit ba7ccd4

Please sign in to comment.