Skip to content

Commit c7acba8

Browse files
committed
Further type adjustments
1 parent e44a6c9 commit c7acba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/ExpandFp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class FRemExpander {
8787
if (Ty->isFloatTy() || Ty->isHalfTy())
8888
return FRemExpander{B, Ty, 12, 0x80000000UL, Ty, B.getInt32Ty()};
8989
if (Ty->isDoubleTy())
90-
return FRemExpander{B, Ty, 26, 0x8000000000000000UL, Ty, B.getInt64Ty()};
90+
return FRemExpander{B, Ty, 26, 0x8000000000000000ULL, Ty, B.getInt64Ty()};
9191

9292
return std::nullopt;
9393
}

0 commit comments

Comments
 (0)