blob: bdff340da903eb3de81cc1a86763b60b2714c454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Check that the 'sink' options work.
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
* RUN: %abs_tmp | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}
|