1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/FrontendC/2007-04-24-bit-not-expr.c

8 lines
135 B
C
Raw Normal View History

2007-04-24 21:24:39 +02:00
// PR 1346
// RUN: %llvmgcc -c %s -o /dev/null
extern bar(void *);
void f(void *cd) {
bar(((void *)((unsigned long)(cd) ^ -1)));
}