xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2002-03-11-LargeCharInString.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 int strcmp(const char *s1, const char *s2);
4 
test(char * X)5 int test(char *X) {
6   /* LLVM-GCC used to emit:
7      %.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00"
8    */
9   return strcmp(X, "\037\213");
10 }
11