x86-asm: Implement clflush opcode
[tinycc.git] / tests / tests2 / 85-asm-outside-function.c
blob0aa7e3360ee7791a9f6fb20d4c8571087689420c
1 extern void vide(void);
2 __asm__("vide: ret");
4 int main() {
5 vide();
6 return 0;