blob: 7a974eef347faaed6978ad9cc0d0cf4764ae5e7a [file] [log] [blame]
Stuart Hastings87311bd2009-02-27 22:35:12 +00001/* RUN: %llvmgcc %s -S -o - -emit-llvm | \
2 RUN: egrep {CSTRING SECTION.\*section.\*__TEXT,.\*__cstring}
Bill Wendling27865b52009-02-28 12:11:01 +00003 XFAIL: *
4 XTARGET: darwin
Stuart Hastings87311bd2009-02-27 22:35:12 +00005 END.
6 Insure that stings go to the cstring section. This test is
7 intended solely for Darwin targets.
8 */
9char *foo() {
10 return "this string should go to the CSTRING SECTION";
11}