mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
Minor aesthetic alignments; no functional changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13593 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f40ae3cc9d
commit
a4c6c522ee
@ -108,12 +108,12 @@ public:
|
|||||||
inline reverse_iterator rend () { return InstList.rend(); }
|
inline reverse_iterator rend () { return InstList.rend(); }
|
||||||
inline const_reverse_iterator rend () const { return InstList.rend(); }
|
inline const_reverse_iterator rend () const { return InstList.rend(); }
|
||||||
|
|
||||||
inline unsigned size() const { return InstList.size(); }
|
inline unsigned size() const { return InstList.size(); }
|
||||||
inline bool empty() const { return InstList.empty(); }
|
inline bool empty() const { return InstList.empty(); }
|
||||||
inline const Instruction &front() const { return InstList.front(); }
|
inline const Instruction &front() const { return InstList.front(); }
|
||||||
inline Instruction &front() { return InstList.front(); }
|
inline Instruction &front() { return InstList.front(); }
|
||||||
inline const Instruction &back() const { return InstList.back(); }
|
inline const Instruction &back() const { return InstList.back(); }
|
||||||
inline Instruction &back() { return InstList.back(); }
|
inline Instruction &back() { return InstList.back(); }
|
||||||
|
|
||||||
/// getInstList() - Return the underlying instruction list container. You
|
/// getInstList() - Return the underlying instruction list container. You
|
||||||
/// need to access it directly if you want to modify it currently.
|
/// need to access it directly if you want to modify it currently.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user