diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-03-25 06:05:50 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-03-25 06:05:50 +0000 |
commit | 0e25c8b364195456c49bbc13f2ddf89243287528 (patch) | |
tree | 5978893a6151f598312283f7818b4d2c04d98ad3 /llvm/lib/Transforms/IPO/MergeFunctions.cpp | |
parent | d73218e4a37afba6f05789ee7b991d40b90ca72e (diff) | |
download | bcm5719-llvm-0e25c8b364195456c49bbc13f2ddf89243287528.tar.gz bcm5719-llvm-0e25c8b364195456c49bbc13f2ddf89243287528.zip |
No functionality change, just adjust some whitespace for coding style compliance.
llvm-svn: 128257
Diffstat (limited to 'llvm/lib/Transforms/IPO/MergeFunctions.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/MergeFunctions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/MergeFunctions.cpp b/llvm/lib/Transforms/IPO/MergeFunctions.cpp index cccffca6e38..a38d2c20bcd 100644 --- a/llvm/lib/Transforms/IPO/MergeFunctions.cpp +++ b/llvm/lib/Transforms/IPO/MergeFunctions.cpp @@ -125,7 +125,7 @@ private: const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0); const ComparableFunction ComparableFunction::TombstoneKey = ComparableFunction(1); -TargetData * const ComparableFunction::LookupOnly = (TargetData*)(-1); +TargetData *const ComparableFunction::LookupOnly = (TargetData*)(-1); } @@ -212,7 +212,7 @@ bool FunctionComparator::isEquivalentType(const Type *Ty1, return false; } - switch(Ty1->getTypeID()) { + switch (Ty1->getTypeID()) { default: llvm_unreachable("Unknown type!"); // Fall through in Release mode. |