Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / LLVMC / C / sink.c
blobc4f9beba8c38aa5b02ba38fcf1ad6a6c500caa63
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 */
8 #include <stdio.h>
10 int main() {
11 printf("hello\n");
12 return 0;