diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-17 22:28:21 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-17 22:28:21 +0000 |
| commit | 926e0f9eefd8f0e40caaa4d9ed24459e923e1e0f (patch) | |
| tree | 088df32873eaa6a551478c541763896223d1e54e /llvm | |
| parent | 40c6d6d307f4e3980b9c83e67c08f362bbcae2eb (diff) | |
| download | bcm5719-llvm-926e0f9eefd8f0e40caaa4d9ed24459e923e1e0f.tar.gz bcm5719-llvm-926e0f9eefd8f0e40caaa4d9ed24459e923e1e0f.zip | |
Minor aesthetic alignments; no functional changes.
llvm-svn: 13593
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/BasicBlock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index 931b1162c83..8e3116577a2 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/include/llvm/BasicBlock.h @@ -108,12 +108,12 @@ public: inline reverse_iterator rend () { 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 const Instruction &front() const { return InstList.front(); } inline Instruction &front() { return InstList.front(); } - inline const Instruction &back() const { return InstList.back(); } - inline Instruction &back() { return InstList.back(); } + inline const Instruction &back() const { return InstList.back(); } + inline Instruction &back() { return InstList.back(); } /// getInstList() - Return the underlying instruction list container. You /// need to access it directly if you want to modify it currently. |

