mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
minor formatting change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12606 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5313f23b8c
commit
02bb481881
@ -275,9 +275,8 @@ static bool ExtractLoops(BugDriver &BD,
|
||||
for (Module::iterator I = ToOptimizeLoopExtracted->begin(),
|
||||
E = ToOptimizeLoopExtracted->end(); I != E; ++I) {
|
||||
if (!I->isExternal()) {
|
||||
Function *OldF = I;
|
||||
Function *NewF =
|
||||
ToNotOptimize->getFunction(OldF->getName(), OldF->getFunctionType());
|
||||
Function *NewF = ToNotOptimize->getFunction(I->getName(),
|
||||
I->getFunctionType());
|
||||
assert(NewF && "Function not found??");
|
||||
MiscompiledFunctions.push_back(NewF);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user