1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Duncan is nervous about undefinedness of % with negatives. I'm

not thrilled about 64-bit % in general, so rewrite to use * instead.

llvm-svn: 62047
This commit is contained in:
Chris Lattner 2009-01-11 20:41:36 +00:00
parent d1e5994f90
commit da5c0c85dc

View File

@ -7710,7 +7710,7 @@ static bool FindElementAtOffset(const Type *Ty, int64_t Offset,
int64_t FirstIdx = 0;
if (int64_t TySize = TD->getABITypeSize(Ty)) {
FirstIdx = Offset/TySize;
Offset %= TySize;
Offset -= FirstIdx*TySize;
// Handle hosts where % returns negative instead of values [0..TySize).
if (Offset < 0) {