PowerPC inline asm was emitting two output operands
[oota-llvm.git] / test / LLVMC / sink.c
1 /*
2  * Check that the 'sink' options work.
3  * RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
4  * RUN: ./%t | grep hello
5  */
6
7 #include <stdio.h>
8
9 int main() {
10     printf("hello\n");
11     return 0;
12 }