pr104458.c: Replace long with long long for -mx32

PR target/104458
	* gcc.target/i386/pr104458.c: Replace long with long long.
This commit is contained in:
H.J. Lu 2022-02-10 06:26:23 -08:00
parent 8383d41d70
commit 69febe8527
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ int i;
void
foo (F f)
{
i += i % (long) f;
i += i % (long long) f;
}