mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 18:33:22 +00:00
Tabs, formatting and long lines oh my!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151334 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1711cdf7f4
commit
5b13ed1ac9
@ -96,11 +96,13 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) {
|
||||
(TySize >= 8 && isa<ArrayType>(Ty) &&
|
||||
cast<ArrayType>(Ty)->getElementType()->isIntegerTy(8)));
|
||||
StaticAllocaMap[AI] =
|
||||
MF->getFrameInfo()->CreateStackObject(TySize, Align, false, MayNeedSP);
|
||||
MF->getFrameInfo()->CreateStackObject(TySize, Align, false,
|
||||
MayNeedSP);
|
||||
}
|
||||
|
||||
for (; BB != EB; ++BB)
|
||||
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
|
||||
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
|
||||
I != E; ++I) {
|
||||
// Mark values used outside their block as exported, by allocating
|
||||
// a virtual register for them.
|
||||
if (isUsedOutsideOfDefiningBlock(I))
|
||||
|
Loading…
x
Reference in New Issue
Block a user