New testcase, distilled from ed-0.2
[oota-llvm.git] / test / CFrontend / 2002-03-11-LargeCharInString.c
1 #include <string.h>
2
3 int test(char *X) {
4         /* LLVM-GCC used to emit: 
5            %.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00"
6          */
7         return strcmp(X, "\037\213");
8 }