diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-01-15 18:42:52 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-01-15 18:42:52 +0000 |
commit | 4a1ff16b2922138333eb4251b7573ff076aa77b4 (patch) | |
tree | 237fb44fb4a909ca9e0b8ad6e010d86f960e5e23 /llvm/lib | |
parent | cc56c54889c0661a53144ead56e0b4101f6f54d6 (diff) | |
download | bcm5719-llvm-4a1ff16b2922138333eb4251b7573ff076aa77b4.tar.gz bcm5719-llvm-4a1ff16b2922138333eb4251b7573ff076aa77b4.zip |
Add missing whitespace.
llvm-svn: 123543
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/IPO/ConstantMerge.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/ConstantMerge.cpp b/llvm/lib/Transforms/IPO/ConstantMerge.cpp index 8efad05855a..6b62f3bbf41 100644 --- a/llvm/lib/Transforms/IPO/ConstantMerge.cpp +++ b/llvm/lib/Transforms/IPO/ConstantMerge.cpp @@ -102,7 +102,7 @@ bool ConstantMerge::runOnModule(Module &M) { } // Only process constants with initializers in the default address space. - if (!GV->isConstant() ||!GV->hasDefinitiveInitializer() || + if (!GV->isConstant() || !GV->hasDefinitiveInitializer() || GV->getType()->getAddressSpace() != 0 || GV->hasSection() || // Don't touch values marked with attribute(used). UsedGlobals.count(GV)) @@ -128,7 +128,7 @@ bool ConstantMerge::runOnModule(Module &M) { GlobalVariable *GV = GVI++; // Only process constants with initializers in the default address space. - if (!GV->isConstant() ||!GV->hasDefinitiveInitializer() || + if (!GV->isConstant() || !GV->hasDefinitiveInitializer() || GV->getType()->getAddressSpace() != 0 || GV->hasSection() || // Don't touch values marked with attribute(used). UsedGlobals.count(GV)) |