diff options
author | Eric Christopher <echristo@gmail.com> | 2015-05-18 21:49:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-05-18 21:49:02 +0000 |
commit | 7a4d1090bc1aa4bd6649ca568c28199cb1941a90 (patch) | |
tree | 52b7323a5dea75f2a9c8af313cf119f25007f935 /llvm/lib | |
parent | 11bb8495f6f44ec842bed641f837df2e3cbc29fa (diff) | |
download | bcm5719-llvm-7a4d1090bc1aa4bd6649ca568c28199cb1941a90.tar.gz bcm5719-llvm-7a4d1090bc1aa4bd6649ca568c28199cb1941a90.zip |
Fix some odd whitespace and formatting errors while making
changes in ConstantsContext.h.
llvm-svn: 237620
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/IR/ConstantsContext.h | 58 |
1 files changed, 23 insertions, 35 deletions
diff --git a/llvm/lib/IR/ConstantsContext.h b/llvm/lib/IR/ConstantsContext.h index e385766fbb8..f3ddcd78d26 100644 --- a/llvm/lib/IR/ConstantsContext.h +++ b/llvm/lib/IR/ConstantsContext.h @@ -100,7 +100,7 @@ public: return User::operator new(s, 2); } ExtractElementConstantExpr(Constant *C1, Constant *C2) - : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(), + : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(), Instruction::ExtractElement, &Op<0>(), 2) { Op<0>() = C1; Op<1>() = C2; @@ -121,7 +121,7 @@ public: return User::operator new(s, 3); } InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) - : ConstantExpr(C1->getType(), Instruction::InsertElement, + : ConstantExpr(C1->getType(), Instruction::InsertElement, &Op<0>(), 3) { Op<0>() = C1; Op<1>() = C2; @@ -146,7 +146,7 @@ public: : ConstantExpr(VectorType::get( cast<VectorType>(C1->getType())->getElementType(), cast<VectorType>(C3->getType())->getNumElements()), - Instruction::ShuffleVector, + Instruction::ShuffleVector, &Op<0>(), 3) { Op<0>() = C1; Op<1>() = C2; @@ -207,7 +207,6 @@ public: DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); }; - /// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is /// used behind the scenes to implement getelementpr constant exprs. class GetElementPtrConstantExpr : public ConstantExpr { @@ -261,65 +260,54 @@ public: }; template <> -struct OperandTraits<UnaryConstantExpr> : - public FixedNumOperandTraits<UnaryConstantExpr, 1> { -}; +struct OperandTraits<UnaryConstantExpr> + : public FixedNumOperandTraits<UnaryConstantExpr, 1> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryConstantExpr, Value) template <> -struct OperandTraits<BinaryConstantExpr> : - public FixedNumOperandTraits<BinaryConstantExpr, 2> { -}; +struct OperandTraits<BinaryConstantExpr> + : public FixedNumOperandTraits<BinaryConstantExpr, 2> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value) template <> -struct OperandTraits<SelectConstantExpr> : - public FixedNumOperandTraits<SelectConstantExpr, 3> { -}; +struct OperandTraits<SelectConstantExpr> + : public FixedNumOperandTraits<SelectConstantExpr, 3> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value) template <> -struct OperandTraits<ExtractElementConstantExpr> : - public FixedNumOperandTraits<ExtractElementConstantExpr, 2> { -}; +struct OperandTraits<ExtractElementConstantExpr> + : public FixedNumOperandTraits<ExtractElementConstantExpr, 2> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value) template <> -struct OperandTraits<InsertElementConstantExpr> : - public FixedNumOperandTraits<InsertElementConstantExpr, 3> { -}; +struct OperandTraits<InsertElementConstantExpr> + : public FixedNumOperandTraits<InsertElementConstantExpr, 3> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value) template <> -struct OperandTraits<ShuffleVectorConstantExpr> : - public FixedNumOperandTraits<ShuffleVectorConstantExpr, 3> { -}; +struct OperandTraits<ShuffleVectorConstantExpr> + : public FixedNumOperandTraits<ShuffleVectorConstantExpr, 3> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorConstantExpr, Value) template <> -struct OperandTraits<ExtractValueConstantExpr> : - public FixedNumOperandTraits<ExtractValueConstantExpr, 1> { -}; +struct OperandTraits<ExtractValueConstantExpr> + : public FixedNumOperandTraits<ExtractValueConstantExpr, 1> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractValueConstantExpr, Value) template <> -struct OperandTraits<InsertValueConstantExpr> : - public FixedNumOperandTraits<InsertValueConstantExpr, 2> { -}; +struct OperandTraits<InsertValueConstantExpr> + : public FixedNumOperandTraits<InsertValueConstantExpr, 2> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueConstantExpr, Value) template <> -struct OperandTraits<GetElementPtrConstantExpr> : - public VariadicOperandTraits<GetElementPtrConstantExpr, 1> { -}; +struct OperandTraits<GetElementPtrConstantExpr> + : public VariadicOperandTraits<GetElementPtrConstantExpr, 1> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrConstantExpr, Value) - template <> -struct OperandTraits<CompareConstantExpr> : - public FixedNumOperandTraits<CompareConstantExpr, 2> { -}; +struct OperandTraits<CompareConstantExpr> + : public FixedNumOperandTraits<CompareConstantExpr, 2> {}; DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CompareConstantExpr, Value) template <class ConstantClass> struct ConstantAggrKeyType; |