blob: 17441e15e9b82eee7d2934acdd046fc17cd6c746 [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}
Stuart Hastingsde6582b2009-02-28 00:56:37 +00003 XFAIL: linux,ia64,alpha,sparc
Stuart Hastings87311bd2009-02-27 22:35:12 +00004 TARGET: *-*-darwin*
5 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}