diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-07-19 00:11:40 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-07-19 00:11:40 +0000 |
commit | 56cb2298663017eb77aa4f4dda8db7ecd1b58173 (patch) | |
tree | c195117b3ebe1576cce2b31a0e10b852ee5632dc /lib/Transforms/IPO/MergeFunctions.cpp | |
parent | 79223c3654451d14918ff1751b70c3eef1e4a874 (diff) |
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160477 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/MergeFunctions.cpp')
-rw-r--r-- | lib/Transforms/IPO/MergeFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp index 715a384adc..9f70f668a8 100644 --- a/lib/Transforms/IPO/MergeFunctions.cpp +++ b/lib/Transforms/IPO/MergeFunctions.cpp @@ -389,7 +389,7 @@ bool FunctionComparator::enumerate(const Value *V1, const Value *V2) { if (!C2) return false; // TODO: constant expressions with GEP or references to F1 or F2. if (C1->isNullValue() && C2->isNullValue() && - isEquivalentType(C1->getType(), C2->getType())) + isEquivalentType(C1->getType(), C2->getType())) return true; // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1 // then they must have equal bit patterns. |