aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-14 16:34:25 +0000
committerChris Lattner <sabre@nondot.org>2003-11-14 16:34:25 +0000
commitdb9546e3248024fe427db6becdd96053e9dd3452 (patch)
tree963c7d0fab231b81ffa28f8d1d73352ed888a38f /lib/Bytecode
parent6e4046f425ed87aba874809f14a4a591687af2f5 (diff)
I can't believe the incompetence of the people I have to deal with around here.
These fools don't even wrap code at 80 columns. Oh wait, _I_ wrote that. That explains a lot!! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Reader/ReaderInternals.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h
index c75c655764..53f699e6d0 100644
--- a/lib/Bytecode/Reader/ReaderInternals.h
+++ b/lib/Bytecode/Reader/ReaderInternals.h
@@ -202,7 +202,8 @@ public:
};
struct ConstantPlaceHolderHelper : public ConstantExpr {
- ConstantPlaceHolderHelper(const Type *Ty) : ConstantExpr(Instruction::UserOp1, Constant::getNullValue(Ty), Ty) {}
+ ConstantPlaceHolderHelper(const Type *Ty)
+ : ConstantExpr(Instruction::UserOp1, Constant::getNullValue(Ty), Ty) {}
};
typedef PlaceholderDef<ConstantPlaceHolderHelper> ConstPHolder;