Enhance hasConstantValue to ignore undef values in phi nodes. This allows it
[oota-llvm.git] / test / CFrontend / 2004-07-06-FunctionCast.c
1 static int unused_func(void) {
2   return 1;
3 }
4
5 int foo(void) {
6   (void)unused_func; /* avoid compiler warning */
7   return 2;
8 }