mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 05:31:51 +00:00
Iterator functions now line up together.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4350 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f0fca36d14
commit
d5806ffb40
@ -98,8 +98,8 @@ public:
|
||||
bool empty() const { return BasicBlocks.empty(); }
|
||||
const MachineBasicBlock &front() const { return BasicBlocks.front(); }
|
||||
MachineBasicBlock &front() { return BasicBlocks.front(); }
|
||||
const MachineBasicBlock &back() const { return BasicBlocks.back(); }
|
||||
MachineBasicBlock &back() { return BasicBlocks.back(); }
|
||||
const MachineBasicBlock & back() const { return BasicBlocks.back(); }
|
||||
MachineBasicBlock & back() { return BasicBlocks.back(); }
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user