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 | 0b60ebbf79dff0856f499ad2ae50758bc959094c (patch) | |
tree | 2f5f1931fbc6aeb0539f52fb728bb3c05c37897e /llvm | |
parent | 9792d68381042789bb99681ab9e8052e5836f0c9 (diff) | |
download | bcm5719-llvm-0b60ebbf79dff0856f499ad2ae50758bc959094c.tar.gz bcm5719-llvm-0b60ebbf79dff0856f499ad2ae50758bc959094c.zip |
fix whitespace in my last commit.
sorry for the churn :S enough for today; going to sleep.
llvm-svn: 158953
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Transforms/IPO/GlobalOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp index ab58c41bf4e..1668d6bc161 100644 --- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp +++ b/llvm/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); |