diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-25 07:31:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-25 07:31:51 +0000 |
commit | fcfbc7bb2c7b696152627cc367c93c7a7c74b199 (patch) | |
tree | 6be99176c3392678fe8cf3d7a7ab442e67c76077 | |
parent | 47bb37c9d2fc2e8646f67e7a8da8f2b8db2477ac (diff) | |
download | bcm5719-llvm-fcfbc7bb2c7b696152627cc367c93c7a7c74b199.tar.gz bcm5719-llvm-fcfbc7bb2c7b696152627cc367c93c7a7c74b199.zip |
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.
llvm-svn: 77055
-rw-r--r-- | llvm/test/FrontendC/2009-02-27-CString.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/test/FrontendC/2009-02-27-CString.c b/llvm/test/FrontendC/2009-02-27-CString.c deleted file mode 100644 index 7a974eef347..00000000000 --- a/llvm/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"; -} |