From 9a9433b8b5a59f9571c56f4bb9fcc5116012c4d5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 25 Jul 2002 15:40:04 +0000 Subject: [PATCH] Break line to fit 80 columns git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3083 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Bytecode/Reader/ConstantReader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Bytecode/Reader/ConstantReader.cpp b/lib/Bytecode/Reader/ConstantReader.cpp index 6bbeb8680b1..6e86997f224 100644 --- a/lib/Bytecode/Reader/ConstantReader.cpp +++ b/lib/Bytecode/Reader/ConstantReader.cpp @@ -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); -- 2.34.1