1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-02 22:32:38 +00:00
llvm-6502/test/CFrontend/2007-04-24-bit-not-expr.c

8 lines
135 B
C
Raw Normal View History

// PR 1346
// RUN: %llvmgcc -c %s -o /dev/null
extern bar(void *);
void f(void *cd) {
bar(((void *)((unsigned long)(cd) ^ -1)));
}