pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / LLVMC / C / sink.c
blobbdff340da903eb3de81cc1a86763b60b2714c454
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 */
7 #include <stdio.h>
9 int main() {
10 printf("hello\n");
11 return 0;