diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-22 00:29:58 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-22 00:29:58 +0000 |
commit | cd88efe516510d3413c0e880217779e3eb56e956 (patch) | |
tree | 1d65cff469c66e774dfbea972c04a75c4ad7daf3 /lib | |
parent | eb7c6865cd8d44a882aa7c3e10e1d976f333344f (diff) |
fix whitespace in my last commit.
sorry for the churn :S enough for today; going to sleep.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/IPO/GlobalOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index ab58c41bf4..1668d6bc16 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp @@ -1570,7 +1570,7 @@ static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc)) CI = cast<CallInst>(BCI->getOperand(0)); else - CI = cast<CallInst>(Malloc); + CI = cast<CallInst>(Malloc); } GVI = PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, TD, true), TD); |