blob: 1c27f181c0e4bd5b00f2160d5cfaf5fb15d58f70 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// PR 1346
2// RUN: %llvmgcc -c %s -o /dev/null
3extern bar(void *);
4
5void f(void *cd) {
6 bar(((void *)((unsigned long)(cd) ^ -1)));
7}