mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix more MSVC warnings caused by a cases I missed when converting
ConstantExpr::getGetElementPtr to use ArrayRef. llvm-svn: 135762
This commit is contained in:
parent
42463ed852
commit
5ceaa632f9
@ -241,7 +241,7 @@ Constant *ShadowStackGC::GetFrameMap(Function &F) {
|
||||
ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
|
||||
ConstantInt::get(Type::getInt32Ty(F.getContext()), 0)
|
||||
};
|
||||
return ConstantExpr::getGetElementPtr(GV, GEPIndices, 2);
|
||||
return ConstantExpr::getGetElementPtr(GV, GEPIndices);
|
||||
}
|
||||
|
||||
Type* ShadowStackGC::GetConcreteStackEntryType(Function &F) {
|
||||
|
@ -2370,7 +2370,7 @@ static bool EvaluateFunction(Function *F, Constant *&RetVal,
|
||||
Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
|
||||
Constant * const IdxList[] = {IdxZero, IdxZero};
|
||||
|
||||
Ptr = ConstantExpr::getGetElementPtr(Ptr, IdxList, 2);
|
||||
Ptr = ConstantExpr::getGetElementPtr(Ptr, IdxList);
|
||||
|
||||
// If we can't improve the situation by introspecting NewTy,
|
||||
// we have to give up.
|
||||
|
Loading…
Reference in New Issue
Block a user