[llvm] r244966 - [IR] Cleanup indentation of EH instructions
David Majnemer via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 13 15:11:40 PDT 2015
Author: majnemer
Date: Thu Aug 13 17:11:40 2015
New Revision: 244966
URL: http://llvm.org/viewvc/llvm-project?rev=244966&view=rev
Log:
[IR] Cleanup indentation of EH instructions
No functional change is intended, just tidying up whitespace.
Modified:
llvm/trunk/lib/IR/Instructions.cpp
Modified: llvm/trunk/lib/IR/Instructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Instructions.cpp?rev=244966&r1=244965&r2=244966&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Instructions.cpp (original)
+++ llvm/trunk/lib/IR/Instructions.cpp Thu Aug 13 17:11:40 2015
@@ -764,7 +764,7 @@ void CatchEndPadInst::init(BasicBlock *U
}
CatchEndPadInst::CatchEndPadInst(LLVMContext &C, BasicBlock *UnwindBB,
- unsigned Values, Instruction *InsertBefore)
+ unsigned Values, Instruction *InsertBefore)
: TerminatorInst(Type::getVoidTy(C), Instruction::CatchEndPad,
OperandTraits<CatchEndPadInst>::op_end(this) - Values,
Values, InsertBefore) {
@@ -772,7 +772,7 @@ CatchEndPadInst::CatchEndPadInst(LLVMCon
}
CatchEndPadInst::CatchEndPadInst(LLVMContext &C, BasicBlock *UnwindBB,
- unsigned Values, BasicBlock *InsertAtEnd)
+ unsigned Values, BasicBlock *InsertAtEnd)
: TerminatorInst(Type::getVoidTy(C), Instruction::CatchEndPad,
OperandTraits<CatchEndPadInst>::op_end(this) - Values,
Values, InsertAtEnd) {
@@ -833,7 +833,7 @@ void CatchReturnInst::setSuccessorV(unsi
// CatchPadInst Implementation
//===----------------------------------------------------------------------===//
void CatchPadInst::init(BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, const Twine &NameStr) {
+ ArrayRef<Value *> Args, const Twine &NameStr) {
assert(getNumOperands() == 2 + Args.size() && "NumOperands not set up?");
Op<-2>() = IfNormal;
Op<-1>() = IfException;
@@ -850,22 +850,22 @@ CatchPadInst::CatchPadInst(const CatchPa
}
CatchPadInst::CatchPadInst(Type *RetTy, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- unsigned Values, const Twine &NameStr,
- Instruction *InsertBefore)
+ BasicBlock *IfException, ArrayRef<Value *> Args,
+ unsigned Values, const Twine &NameStr,
+ Instruction *InsertBefore)
: TerminatorInst(RetTy, Instruction::CatchPad,
- OperandTraits<CatchPadInst>::op_end(this) - Values,
- Values, InsertBefore) {
+ OperandTraits<CatchPadInst>::op_end(this) - Values, Values,
+ InsertBefore) {
init(IfNormal, IfException, Args, NameStr);
}
CatchPadInst::CatchPadInst(Type *RetTy, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- unsigned Values, const Twine &NameStr,
- BasicBlock *InsertAtEnd)
+ BasicBlock *IfException, ArrayRef<Value *> Args,
+ unsigned Values, const Twine &NameStr,
+ BasicBlock *InsertAtEnd)
: TerminatorInst(RetTy, Instruction::CatchPad,
- OperandTraits<CatchPadInst>::op_end(this) - Values,
- Values, InsertAtEnd) {
+ OperandTraits<CatchPadInst>::op_end(this) - Values, Values,
+ InsertAtEnd) {
init(IfNormal, IfException, Args, NameStr);
}
@@ -949,8 +949,7 @@ CleanupPadInst::CleanupPadInst(const Cle
}
CleanupPadInst::CleanupPadInst(Type *RetTy, ArrayRef<Value *> Args,
- const Twine &NameStr,
- Instruction *InsertBefore)
+ const Twine &NameStr, Instruction *InsertBefore)
: Instruction(RetTy, Instruction::CleanupPad,
OperandTraits<CleanupPadInst>::op_end(this) - Args.size(),
Args.size(), InsertBefore) {
@@ -958,8 +957,7 @@ CleanupPadInst::CleanupPadInst(Type *Ret
}
CleanupPadInst::CleanupPadInst(Type *RetTy, ArrayRef<Value *> Args,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd)
+ const Twine &NameStr, BasicBlock *InsertAtEnd)
: Instruction(RetTy, Instruction::CleanupPad,
OperandTraits<CleanupPadInst>::op_end(this) - Args.size(),
Args.size(), InsertAtEnd) {
More information about the llvm-commits
mailing list