slightly increase prettiness.
[llvm/avr.git] / test / FrontendC / 2002-03-11-LargeCharInString.c
blobb383d03f79974ee31be1d2fa6b50a933d85d52bd
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 #include <string.h>
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");