llvm-6502/test/LLVMC/sink.c
2008-11-25 21:38:12 +00:00

13 lines
192 B
C

/*
* Check that the 'sink' options work.
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
* RUN: ./%t | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}