aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-01-12 20:38:59 +0000
committerDuncan Sands <baldrick@free.fr>2009-01-12 20:38:59 +0000
commitdc020f9c3c6ff10128bdf0693a0880c4bb7c019d (patch)
tree211bf6abe99446e0e9258e1580f542ba60230955 /llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
parent8e1555c7c3bf668fbda3fa9c13f0499332e1bf70 (diff)
downloadllvm-dc020f9c3c6ff10128bdf0693a0880c4bb7c019d.zip
llvm-dc020f9c3c6ff10128bdf0693a0880c4bb7c019d.tar.gz
llvm-dc020f9c3c6ff10128bdf0693a0880c4bb7c019d.tar.bz2
Rename getABITypeSize to getTypePaddedSize, as
suggested by Chris. llvm-svn: 62099
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Execution.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
index 639415d..872a40b 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -750,7 +750,7 @@ void Interpreter::visitAllocationInst(AllocationInst &I) {
unsigned NumElements =
getOperandValue(I.getOperand(0), SF).IntVal.getZExtValue();
- unsigned TypeSize = (size_t)TD.getABITypeSize(Ty);
+ unsigned TypeSize = (size_t)TD.getTypePaddedSize(Ty);
// Avoid malloc-ing zero bytes, use max()...
unsigned MemToAlloc = std::max(1U, NumElements * TypeSize);
@@ -810,7 +810,7 @@ GenericValue Interpreter::executeGEPOperation(Value *Ptr, gep_type_iterator I,
assert(BitWidth == 64 && "Invalid index type for getelementptr");
Idx = (int64_t)IdxGV.IntVal.getZExtValue();
}
- Total += TD.getABITypeSize(ST->getElementType())*Idx;
+ Total += TD.getTypePaddedSize(ST->getElementType())*Idx;
}
}