Merge branch 'main' into temp-branch

This commit is contained in:
Janat Baig
2025-09-02 20:23:25 -04:00
committed by GitHub
593 changed files with 14899 additions and 7224 deletions

View File

@@ -712,10 +712,10 @@ public:
IntegerLiteralInst *createIntegerLiteral(IntegerLiteralExpr *E);
IntegerLiteralInst *createIntegerLiteral(SILLocation Loc, SILType Ty,
intmax_t Value) {
return insert(
IntegerLiteralInst::create(getSILDebugLocation(Loc), Ty, Value,
getModule()));
intmax_t Value,
bool treatAsSigned = false) {
return insert(IntegerLiteralInst::create(
getSILDebugLocation(Loc), Ty, Value, treatAsSigned, getModule()));
}
IntegerLiteralInst *createIntegerLiteral(SILLocation Loc, SILType Ty,
const APInt &Value) {