diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-11-13 00:55:42 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-11-13 00:55:42 +0000 |
commit | e4f4743409a7909b70a76de66ce9f991f3c6e4f8 (patch) | |
tree | 8e90f93a392c0247aeefcb4f3f5f452663d9df95 /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | 072e63767118ad6c76a621740ba2c9126a607bd0 (diff) | |
download | bcm5719-llvm-e4f4743409a7909b70a76de66ce9f991f3c6e4f8.tar.gz bcm5719-llvm-e4f4743409a7909b70a76de66ce9f991f3c6e4f8.zip |
Fix 80-col violation / non-sensicalness.
llvm-svn: 118958
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 77082c4d041..275f02e34c2 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -251,8 +251,8 @@ const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { for (ExecutionEngineState::GlobalAddressMapTy::iterator I = EEState.getGlobalAddressMap(locked).begin(), E = EEState.getGlobalAddressMap(locked).end(); I != E; ++I) - EEState.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second, - I->first)); + EEState.getGlobalAddressReverseMap(locked).insert(std::make_pair( + I->second, I->first)); } std::map<void *, AssertingVH<const GlobalValue> >::iterator I = @@ -748,7 +748,7 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) { case Type::FP128TyID: { APFloat apfLHS = APFloat(LHS.IntVal); switch (CE->getOpcode()) { - default: llvm_unreachable("Invalid long double opcode");llvm_unreachable(0); + default: llvm_unreachable("Invalid long double opcode"); case Instruction::FAdd: apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven); GV.IntVal = apfLHS.bitcastToAPInt(); |