blob: 169f74036423c4d59b13e73dc7ee168611bc14fe [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerb50eaea2004-07-07 02:20:02 +00003static int unused_func(void) {
4 return 1;
5}
6
7int foo(void) {
8 (void)unused_func; /* avoid compiler warning */
9 return 2;
10}