summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-25 07:31:51 +0000
committerChris Lattner <sabre@nondot.org>2009-07-25 07:31:51 +0000
commit6dc82863a677d8c3a3b27906a094d43ec0695af1 (patch)
tree5e4266b280b3188bfb9c19d98aefaa954790e1a8 /test
parentdced9fb219ba4aa8f0de0c960b9666bd4055c7ae (diff)
downloadllvm-6dc82863a677d8c3a3b27906a094d43ec0695af1.tar.gz
llvm-6dc82863a677d8c3a3b27906a094d43ec0695af1.tar.bz2
llvm-6dc82863a677d8c3a3b27906a094d43ec0695af1.tar.xz
remove this test. It is currently failing because we now emit the string
on darwin with ".cstring" instead of ".section __TEXT,__cstring". They are the same and the former is better. Remove this because this is no longer magic pixie dust in the frontend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77055 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/FrontendC/2009-02-27-CString.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC/2009-02-27-CString.c b/test/FrontendC/2009-02-27-CString.c
deleted file mode 100644
index 7a974eef34..0000000000
--- a/test/FrontendC/2009-02-27-CString.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/* RUN: %llvmgcc %s -S -o - -emit-llvm | \
- RUN: egrep {CSTRING SECTION.\*section.\*__TEXT,.\*__cstring}
- XFAIL: *
- XTARGET: darwin
- END.
- Insure that stings go to the cstring section. This test is
- intended solely for Darwin targets.
- */
-char *foo() {
- return "this string should go to the CSTRING SECTION";
-}