[llvm-commits] CVS: llvm/include/llvm/BasicBlock.h
Misha Brukman
brukman at cs.uiuc.edu
Mon May 17 17:28:01 PDT 2004
Changes in directory llvm/include/llvm:
BasicBlock.h updated: 1.39 -> 1.40
---
Log message:
Minor aesthetic alignments; no functional changes.
---
Diffs of the changes: (+3 -3)
Index: llvm/include/llvm/BasicBlock.h
diff -u llvm/include/llvm/BasicBlock.h:1.39 llvm/include/llvm/BasicBlock.h:1.40
--- llvm/include/llvm/BasicBlock.h:1.39 Mon May 17 17:25:12 2004
+++ llvm/include/llvm/BasicBlock.h Mon May 17 17:28:21 2004
@@ -108,12 +108,12 @@
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.
More information about the llvm-commits
mailing list