mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Fixing the build failure due to compiler warnings and unnecessary disambiguation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219861 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c14fb89680
commit
aaf36b40cc
@ -181,7 +181,7 @@ char Scalarizer::ID = 0;
|
||||
} // end anonymous namespace
|
||||
|
||||
INITIALIZE_PASS_WITH_OPTIONS(Scalarizer, "scalarizer",
|
||||
"Scalarize vector operations", false, false);
|
||||
"Scalarize vector operations", false, false)
|
||||
|
||||
Scatterer::Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v,
|
||||
ValueVector *cachePtr)
|
||||
@ -243,8 +243,7 @@ bool Scalarizer::doInitialization(Module &M) {
|
||||
ParallelLoopAccessMDKind =
|
||||
M.getContext().getMDKindID("llvm.mem.parallel_loop_access");
|
||||
ScalarizeLoadStore =
|
||||
M.getContext()
|
||||
.template getOption<bool, Scalarizer, &Scalarizer::ScalarizeLoadStore>();
|
||||
M.getContext().getOption<bool, Scalarizer, &Scalarizer::ScalarizeLoadStore>();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user