aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/compound.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/compound.c')
-rw-r--r--clang/test/CodeGen/compound.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/clang/test/CodeGen/compound.c b/clang/test/CodeGen/compound.c
deleted file mode 100644
index c8afcee..0000000
--- a/clang/test/CodeGen/compound.c
+++ /dev/null
@@ -1,25 +0,0 @@
-// RUN: clang < %s -emit-llvm
-int A;
-long long B;
-int C;
-int *P;
-void test1() {
- C = (A /= B);
-
- P -= 4;
-
- C = P - (P+10);
-}
-
-short x;
-void test2(char c) { x += c; }
-
-void foo(char *strbuf) {
- int stufflen = 4;
- strbuf += stufflen;
-}
-
-
-// Aggregate cast to void
-union uu { int a;}; void f(union uu p) { (void) p;}
-