mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix build for compilers that don't understand injected class names properly.
llvm-svn: 164142
This commit is contained in:
parent
bb7740900c
commit
8e14d6349e
@ -2540,7 +2540,7 @@ private:
|
||||
|
||||
struct LoadOpSplitter : public OpSplitter<LoadOpSplitter> {
|
||||
LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr)
|
||||
: OpSplitter(InsertionPoint, Ptr) {}
|
||||
: OpSplitter<LoadOpSplitter>(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> {
|
||||
StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr)
|
||||
: OpSplitter(InsertionPoint, Ptr) {}
|
||||
: OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr) {}
|
||||
|
||||
/// Emit a leaf store of a single value. This is called at the leaves of the
|
||||
/// recursive emission to actually produce stores.
|
||||
|
Loading…
Reference in New Issue
Block a user