mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-20 12:31:40 +00:00
Stylistic and 80-col fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163940 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1ef65d61d1
commit
911908dcb8
@ -153,12 +153,8 @@ bool CodeGenPrepare::runOnFunction(Function &F) {
|
||||
/// profitably bypassed and carried out with a shorter, faster divide.
|
||||
if (TLI && TLI->isSlowDivBypassed()) {
|
||||
const DenseMap<Type*, Type*> &BypassTypeMap = TLI->getBypassSlowDivTypes();
|
||||
|
||||
for (Function::iterator I = F.begin(); I != F.end(); I++) {
|
||||
EverMadeChange |= bypassSlowDivision(F,
|
||||
I,
|
||||
BypassTypeMap);
|
||||
}
|
||||
for (Function::iterator I = F.begin(); I != F.end(); I++)
|
||||
EverMadeChange |= bypassSlowDivision(F, I, BypassTypeMap);
|
||||
}
|
||||
|
||||
// Eliminate blocks that contain only PHI nodes and an
|
||||
|
Loading…
x
Reference in New Issue
Block a user