aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-16 22:58:39 +0000
committerDan Gohman <gohman@apple.com>2010-07-16 22:58:39 +0000
commit6dd26ba4bab4e3ebb1545e7e2211297f66e61e0b (patch)
treec712887d744d8948860c5ff7d7bcf88280fd4ab3 /lib/Bitcode
parentdc86704114a065da0ff1d835edcd62aae51481dd (diff)
downloadexternal_llvm-6dd26ba4bab4e3ebb1545e7e2211297f66e61e0b.zip
external_llvm-6dd26ba4bab4e3ebb1545e7e2211297f66e61e0b.tar.gz
external_llvm-6dd26ba4bab4e3ebb1545e7e2211297f66e61e0b.tar.bz2
Fix whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Writer/ValueEnumerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bitcode/Writer/ValueEnumerator.cpp b/lib/Bitcode/Writer/ValueEnumerator.cpp
index 7fa425a..7be6dda 100644
--- a/lib/Bitcode/Writer/ValueEnumerator.cpp
+++ b/lib/Bitcode/Writer/ValueEnumerator.cpp
@@ -388,8 +388,8 @@ void ValueEnumerator::incorporateFunction(const Function &F) {
NumModuleValues = Values.size();
// Adding function arguments to the value table.
- for(Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
- I != E; ++I)
+ for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
+ I != E; ++I)
EnumerateValue(I);
FirstFuncConstantID = Values.size();