[backend] incorrect asm output

This commit is contained in:
ladev789
2025-06-22 20:00:03 +08:00
parent 4711fb603b
commit 88a561177d
4 changed files with 182 additions and 70 deletions

View File

@ -1,12 +1,8 @@
//test add
int main(){
int a, b;
float d;
a = 10;
b = 2;
int c = a;
d = 1.1 ;
return a + b + c;
return a + b;
}