From: Benjamin Kramer Date: Tue, 18 Sep 2012 17:11:47 +0000 (+0000) Subject: Fix build for compilers that don't understand injected class names properly. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3b682bdf671e5dd0eb70c0498ba18e5c08874fc9;p=oota-llvm.git Fix build for compilers that don't understand injected class names properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164142 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/SROA.cpp b/lib/Transforms/Scalar/SROA.cpp index 1215f417691..3607d4cc8c6 100644 --- a/lib/Transforms/Scalar/SROA.cpp +++ b/lib/Transforms/Scalar/SROA.cpp @@ -2540,7 +2540,7 @@ private: struct LoadOpSplitter : public OpSplitter { LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr) - : OpSplitter(InsertionPoint, Ptr) {} + : OpSplitter(InsertionPoint, Ptr) {} /// Emit a leaf load of a single value. This is called at the leaves of the /// recursive emission to actually load values. @@ -2572,7 +2572,7 @@ private: struct StoreOpSplitter : public OpSplitter { StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr) - : OpSplitter(InsertionPoint, Ptr) {} + : OpSplitter(InsertionPoint, Ptr) {} /// Emit a leaf store of a single value. This is called at the leaves of the /// recursive emission to actually produce stores.