llvm-6502/test/LLVMC/sink.c

13 lines
193 B
C
Raw Normal View History

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