mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-21 05:40:09 +08:00
42e2a67f23
Some more subtle issues with code suppression: - outputting asms but not their operand setup is broken - but global asms must always be output - statement expressions are transparent to code suppression - vtop can't be transformed from VT_CMP/VT_JMP when nocode_wanted Also remove .exe files from tests2 if they don't fail.
10 lines
150 B
C
10 lines
150 B
C
extern int printf (const char *, ...);
|
|
extern void vide(void);
|
|
__asm__("vide: ret");
|
|
|
|
int main() {
|
|
vide();
|
|
printf ("okay\n");
|
|
return 0;
|
|
}
|