mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
13 lines
174 B
C
13 lines
174 B
C
|
/*
|
||
|
* Check that -Wall works as intended
|
||
|
* RUN: llvmc2 -Wall %s -o %t
|
||
|
* RUN: ./%t | grep hello
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("hello\n");
|
||
|
return 0;
|
||
|
}
|