llvm-6502/test/LLVMC/C/sink.c
2009-09-13 01:40:48 +00:00

13 lines
196 B
C

/*
* 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;
}