[llvm] r285375 - [IR] Clang-format my previous commit. NFCI.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 27 18:41:57 PDT 2016
Author: davide
Date: Thu Oct 27 20:41:56 2016
New Revision: 285375
URL: http://llvm.org/viewvc/llvm-project?rev=285375&view=rev
Log:
[IR] Clang-format my previous commit. NFCI.
Modified:
llvm/trunk/lib/IR/ConstantFold.cpp
Modified: llvm/trunk/lib/IR/ConstantFold.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/ConstantFold.cpp?rev=285375&r1=285374&r2=285375&view=diff
==============================================================================
--- llvm/trunk/lib/IR/ConstantFold.cpp (original)
+++ llvm/trunk/lib/IR/ConstantFold.cpp Thu Oct 27 20:41:56 2016
@@ -2056,8 +2056,8 @@ static Constant *ConstantFoldGetElementP
return C;
if (isa<UndefValue>(C)) {
- Type *GEPTy = GetElementPtrInst::getGEPReturnType(C,
- makeArrayRef((Value * const *)Idxs.data(), Idxs.size()));
+ Type *GEPTy = GetElementPtrInst::getGEPReturnType(
+ C, makeArrayRef((Value * const *)Idxs.data(), Idxs.size()));
return UndefValue::get(GEPTy);
}
More information about the llvm-commits
mailing list