2008-05-30 08:23:29 +02:00
|
|
|
/*
|
|
|
|
* Check that the 'sink' options work.
|
2008-11-25 22:38:12 +01:00
|
|
|
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
|
2008-05-30 08:23:29 +02:00
|
|
|
* RUN: ./%t | grep hello
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
printf("hello\n");
|
|
|
|
return 0;
|
|
|
|
}
|