aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2007-02-16-VoidPtrDiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2007-02-16-VoidPtrDiff.c')
-rw-r--r--test/FrontendC/2007-02-16-VoidPtrDiff.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/FrontendC/2007-02-16-VoidPtrDiff.c b/test/FrontendC/2007-02-16-VoidPtrDiff.c
new file mode 100644
index 0000000..713b9b2
--- /dev/null
+++ b/test/FrontendC/2007-02-16-VoidPtrDiff.c
@@ -0,0 +1,5 @@
+// RUN: %llvmgcc %s -S -o - -emit-llvm
+
+void foo(void *ptr, int test) {
+ (ptr - ((void *) test + 0x2000));
+}