aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/string-init.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-05 08:30:04 +0000
committerChris Lattner <sabre@nondot.org>2009-12-05 08:30:04 +0000
commit36a2be162dda758e55d6605ef712494fe09ef432 (patch)
treeeb2242a78ef6041a28893339c7c724fd941a43af /test/CodeGen/string-init.c
parent761acc19d966a67f2175783d09412d6ac9463400 (diff)
consolidate some tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90659 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/string-init.c')
-rw-r--r--test/CodeGen/string-init.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/string-init.c b/test/CodeGen/string-init.c
deleted file mode 100644
index 410a407282..0000000000
--- a/test/CodeGen/string-init.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: clang-cc -emit-llvm %s -o %t
-// RUN: grep 'internal constant \[10 x i8\]' %t
-// RUN: not grep -F "[5 x i8]" %t
-// RUN: not grep "store " %t
-
-void test(void) {
- char a[10] = "asdf";
- char b[10] = { "asdf" };
-}
-