From 0b85642898bd81209e56e8098c065e2975d455a0 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 29 May 2008 19:17:15 +0000 Subject: For PR1338: Rename test dirs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC/2007-04-24-bit-not-expr.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/FrontendC/2007-04-24-bit-not-expr.c (limited to 'test/FrontendC/2007-04-24-bit-not-expr.c') diff --git a/test/FrontendC/2007-04-24-bit-not-expr.c b/test/FrontendC/2007-04-24-bit-not-expr.c new file mode 100644 index 0000000..1c27f181 --- /dev/null +++ b/test/FrontendC/2007-04-24-bit-not-expr.c @@ -0,0 +1,7 @@ +// PR 1346 +// RUN: %llvmgcc -c %s -o /dev/null +extern bar(void *); + +void f(void *cd) { + bar(((void *)((unsigned long)(cd) ^ -1))); +} -- cgit v1.1