mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 16:56:39 +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…
Reference in New Issue
Block a user