Fixed OptCmp1 with certain code patterns with labels.

This commit is contained in:
acqn
2022-03-01 10:40:01 +08:00
parent f8cdb2ab63
commit 5ef420af5a
2 changed files with 25 additions and 2 deletions

23
test/val/bug1690.c Normal file
View File

@@ -0,0 +1,23 @@
/* OptCmp1 messed up with labels */
#include <stdio.h>
int main(void)
{
register unsigned int x = 0x200;
register unsigned int y = 0;
do
{
++y;
}
while (--x);
if (y != 0x200)
{
printf("0x%X\n", y);
return 1;
}
return 0;
}