blob: d8a1671fc773f46367e84d226bba182e69b9dc11 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner2286a9c2002-03-11 19:03:41 +00003#include <string.h>
4
5int test(char *X) {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +00006 /* LLVM-GCC used to emit:
7 %.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00"
8 */
9 return strcmp(X, "\037\213");
Chris Lattner2286a9c2002-03-11 19:03:41 +000010}