diff options
Diffstat (limited to 'clang/test/CodeGen/2002-03-11-LargeCharInString.c')
-rw-r--r-- | clang/test/CodeGen/2002-03-11-LargeCharInString.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2002-03-11-LargeCharInString.c b/clang/test/CodeGen/2002-03-11-LargeCharInString.c new file mode 100644 index 0000000..9270873 --- /dev/null +++ b/clang/test/CodeGen/2002-03-11-LargeCharInString.c @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null + +int strcmp(const char *s1, const char *s2); + +int test(char *X) { + /* LLVM-GCC used to emit: + %.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00" + */ + return strcmp(X, "\037\213"); +} |