mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
89bfeb825b
llvm-svn: 60048
13 lines
173 B
C
13 lines
173 B
C
/*
|
|
* Check that -Wall works as intended
|
|
* RUN: llvmc -Wall %s -o %t
|
|
* RUN: ./%t | grep hello
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("hello\n");
|
|
return 0;
|
|
}
|