diff options
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index 82ba93e654..f3612a39d3 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -94,8 +94,8 @@ public: llvm::Constant *m = wrap(BaseOffset); m = wrap((0?700:0) + BaseOffset); if (updateVBIndex) - VBIndex[Base] = -(offsets.size()*LLVMPointerWidth/8) - - 3*LLVMPointerWidth/8; + VBIndex[Base] = (ssize_t)(-(offsets.size()*LLVMPointerWidth/8) + - 3*LLVMPointerWidth/8); offsets.push_back(m); } GenerateVBaseOffsets(offsets, Base, Offset, updateVBIndex); |