Break line to fit 80 columns
authorChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 15:40:04 +0000 (15:40 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 15:40:04 +0000 (15:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3083 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/ConstantReader.cpp

index 6bbeb8680b15be9dcc0fc80ed953dac193ab4a90..6e86997f224471fa216a769f56c60636cb226988 100644 (file)
@@ -200,7 +200,8 @@ bool BytecodeParser::parseConstantValue(const uchar *&Buf, const uchar *EndBuf,
       const Type *argTy = getType(argTypeSlot);
       if (argTy == 0) return failure(true);
       
-      BCR_TRACE(4, "CE Arg " << i << ": Type: '" << argTy << "'  slot: " << argValSlot << "\n");
+      BCR_TRACE(4, "CE Arg " << i << ": Type: '" << argTy << "'  slot: "
+                << argValSlot << "\n");
       
       // Get the arg value from its slot if it exists, otherwise a placeholder
       Value *Val = getValue(argTy, argValSlot, false);