[llvm-commits] [llvm] r118958 - /llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
Daniel Dunbar
daniel at zuster.org
Fri Nov 12 16:55:42 PST 2010
Author: ddunbar
Date: Fri Nov 12 18:55:42 2010
New Revision: 118958
URL: http://llvm.org/viewvc/llvm-project?rev=118958&view=rev
Log:
Fix 80-col violation / non-sensicalness.
Modified:
llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
Modified: llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp?rev=118958&r1=118957&r2=118958&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp Fri Nov 12 18:55:42 2010
@@ -251,8 +251,8 @@
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 @@
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();
More information about the llvm-commits
mailing list