Fixing a typo in configure.ac.
[oota-llvm.git] / test / CFrontend / 2007-04-24-bit-not-expr.c
1 // PR 1346
2 // RUN: %llvmgcc -c %s  -o /dev/null
3 extern bar(void *);
4
5 void f(void *cd) {
6   bar(((void *)((unsigned long)(cd) ^ -1)));
7 }