Silence VS warnings


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19389 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index 8616656..9037ab6 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -703,7 +703,7 @@
   unsigned NumElements = getOperandValue(I.getOperand(0), SF).UIntVal;
 
   // Allocate enough memory to hold the type...
-  void *Memory = malloc(NumElements * TD.getTypeSize(Ty));
+  void *Memory = malloc(NumElements * (size_t)TD.getTypeSize(Ty));
 
   GenericValue Result = PTOGV(Memory);
   assert(Result.PointerVal != 0 && "Null pointer returned by malloc!");
@@ -736,9 +736,9 @@
       const StructLayout *SLO = TD.getStructLayout(STy);
       
       const ConstantUInt *CPU = cast<ConstantUInt>(I.getOperand());
-      unsigned Index = CPU->getValue();
+      unsigned Index = unsigned(CPU->getValue());
       
-      Total += SLO->MemberOffsets[Index];
+      Total += (PointerTy)SLO->MemberOffsets[Index];
     } else {
       const SequentialType *ST = cast<SequentialType>(*I);
       // Get the index number for the array... which must be long type...
@@ -756,7 +756,7 @@
       case Type::UIntTyID:   Idx = IdxGV.UIntVal; break;
       case Type::ULongTyID:  Idx = IdxGV.ULongVal; break;
       }
-      Total += TD.getTypeSize(ST->getElementType())*Idx;
+      Total += PointerTy(TD.getTypeSize(ST->getElementType())*Idx);
     }
   }