blob: 9d99caffb53662ffee3933c96159b2e878272c90 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// PR 1346
2// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3extern bar(void *);
4
5void f(void *cd) {
6 bar(((void *)((unsigned long)(cd) ^ -1)));
7}