[llvm-commits] [llvm] r164130 - /llvm/trunk/lib/Transforms/Scalar/SROA.cpp
NAKAMURA Takumi
geek4civic at gmail.com
Tue Sep 18 08:29:02 PDT 2012
Author: chapuni
Date: Tue Sep 18 10:29:02 2012
New Revision: 164130
URL: http://llvm.org/viewvc/llvm-project?rev=164130&view=rev
Log:
SROA.cpp: Appease msvc.
...I don't know why this could appease msvc...baad.
Modified:
llvm/trunk/lib/Transforms/Scalar/SROA.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/SROA.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SROA.cpp?rev=164130&r1=164129&r2=164130&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SROA.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SROA.cpp Tue Sep 18 10:29:02 2012
@@ -2487,7 +2487,7 @@
/// to the correct slot within the aggregate for \p Ty.
template <void (AggLoadStoreRewriter::*emitFunc)(
IRBuilder<> &IRB, Type *Ty, Value *&Agg, Value *Ptr,
- ArrayRef<unsigned> Indices, ArrayRef<Value *> GEPIndices,
+ ArrayRef<unsigned>, ArrayRef<Value *>,
const Twine &Name)>
void emitSplitOps(IRBuilder<> &IRB, Type *Ty, Value *&Agg, Value *Ptr,
SmallVectorImpl<unsigned> &Indices,
More information about the llvm-commits
mailing list