aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2007-04-24-bit-not-expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2007-04-24-bit-not-expr.c')
-rw-r--r--test/CodeGen/2007-04-24-bit-not-expr.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/2007-04-24-bit-not-expr.c b/test/CodeGen/2007-04-24-bit-not-expr.c
new file mode 100644
index 000000000000..9d99caffb536
--- /dev/null
+++ b/test/CodeGen/2007-04-24-bit-not-expr.c
@@ -0,0 +1,7 @@
+// PR 1346
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+extern bar(void *);
+
+void f(void *cd) {
+ bar(((void *)((unsigned long)(cd) ^ -1)));
+}