aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/iOther.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-06-27 23:29:21 +0000
committerChris Lattner <sabre@nondot.org>2001-06-27 23:29:21 +0000
commiteef4d787f0cb3d96b66d9b1e7f251c8584e1c721 (patch)
treee3492b27fc2cd4b2ee06e4d230f65c54d316f8ad /include/llvm/iOther.h
parent9af81a685e627783b65a9346fa02270a5b59b304 (diff)
downloadexternal_llvm-eef4d787f0cb3d96b66d9b1e7f251c8584e1c721.zip
external_llvm-eef4d787f0cb3d96b66d9b1e7f251c8584e1c721.tar.gz
external_llvm-eef4d787f0cb3d96b66d9b1e7f251c8584e1c721.tar.bz2
Minor formating changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/iOther.h')
-rw-r--r--include/llvm/iOther.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/llvm/iOther.h b/include/llvm/iOther.h
index 1d6b9a9..23bc546 100644
--- a/include/llvm/iOther.h
+++ b/include/llvm/iOther.h
@@ -50,10 +50,14 @@ public:
inline unsigned getNumIncomingValues() const { return IncomingValues.size(); }
// getIncomingValue - Return incoming value #x
- inline Value *getIncomingValue(unsigned i) const { return IncomingValues[i].first; }
+ inline Value *getIncomingValue(unsigned i) const {
+ return IncomingValues[i].first;
+ }
// getIncomingBlock - Return incoming basic block #x
- inline BasicBlock *getIncomingBlock(unsigned i) const { return IncomingValues[i].second; }
+ inline BasicBlock *getIncomingBlock(unsigned i) const {
+ return IncomingValues[i].second;
+ }
// addIncoming - Add an incoming value to the end of the PHI list
void addIncoming(Value *D, BasicBlock *BB);