OSDN Git Service

clang-format a couple of lines
authorFilipe Cabecinhas <me@filcab.net>
Wed, 27 May 2015 00:48:37 +0000 (00:48 +0000)
committerFilipe Cabecinhas <me@filcab.net>
Wed, 27 May 2015 00:48:37 +0000 (00:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238268 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bitcode/Reader/BitstreamReader.cpp

index 2d02549..f57e077 100644 (file)
@@ -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)