diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-11-09 19:36:39 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-11-09 19:36:39 +0000 |
commit | 26f28a283691c83782984323270087b8fd412b4a (patch) | |
tree | 51902d9753ab20b2096eafb43228915f8a190fe6 /llvm/lib/IR/Verifier.cpp | |
parent | 81fc84fa07cee81def3a6190e9b1e175087b9337 (diff) | |
download | bcm5719-llvm-26f28a283691c83782984323270087b8fd412b4a.tar.gz bcm5719-llvm-26f28a283691c83782984323270087b8fd412b4a.zip |
[Verifier] clang-format a section; NFC
Suggested in D26438 since I'm touching related code.
llvm-svn: 286388
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r-- | llvm/lib/IR/Verifier.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index 31a181e8db4..d56ff653949 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -389,8 +389,8 @@ private: SmallVectorImpl<const MDNode *> &Requirements); void visitFunction(const Function &F); void visitBasicBlock(BasicBlock &BB); - void visitRangeMetadata(Instruction& I, MDNode* Range, Type* Ty); - void visitDereferenceableMetadata(Instruction& I, MDNode* MD); + void visitRangeMetadata(Instruction &I, MDNode *Range, Type *Ty); + void visitDereferenceableMetadata(Instruction &I, MDNode *MD); void visitTBAAMetadata(Instruction &I, MDNode *MD); template <class Ty> bool isValidMetadataArray(const MDTuple &N); @@ -2968,10 +2968,8 @@ static bool isContiguous(const ConstantRange &A, const ConstantRange &B) { return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); } -void Verifier::visitRangeMetadata(Instruction& I, - MDNode* Range, Type* Ty) { - assert(Range && - Range == I.getMetadata(LLVMContext::MD_range) && +void Verifier::visitRangeMetadata(Instruction &I, MDNode *Range, Type *Ty) { + assert(Range && Range == I.getMetadata(LLVMContext::MD_range) && "precondition violation"); unsigned NumOperands = Range->getNumOperands(); |