Thumb2 assembly parsing and encoding for UHSUB16/UHSUB8.
[oota-llvm.git] / test / LLVMC / C / sink.c
1 /*
2  * Check that the 'sink' options work.
3  * RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
4  * RUN: %abs_tmp | grep hello
5  * XFAIL: vg_leak
6  */
7
8 #include <stdio.h>
9
10 int main() {
11     printf("hello\n");
12     return 0;
13 }