aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/ConstantReader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 15:40:04 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 15:40:04 +0000
commit9a9433b8b5a59f9571c56f4bb9fcc5116012c4d5 (patch)
treea7a3eec88e2b8fb255eaaf42e8c818c84fa9cf39 /lib/Bytecode/Reader/ConstantReader.cpp
parent47d3e261398457c02b9891f9a3c1eb654411c45b (diff)
Break line to fit 80 columns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ConstantReader.cpp')
-rw-r--r--lib/Bytecode/Reader/ConstantReader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/ConstantReader.cpp b/lib/Bytecode/Reader/ConstantReader.cpp
index 6bbeb8680b..6e86997f22 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);