llvm-6502/test/LLVMC/sink.c
Mikhail Glushenkov 34f376281f Fix: 'sink' handling was broken.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51750 91177308-0d34-0410-b5e6-96231b3b80d8
2008-05-30 06:23:29 +00:00

13 lines
193 B
C

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