summaryrefslogtreecommitdiff
path: root/release_23/test/CFrontend/2002-03-11-LargeCharInString.c
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/CFrontend/2002-03-11-LargeCharInString.c')
-rw-r--r--release_23/test/CFrontend/2002-03-11-LargeCharInString.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/release_23/test/CFrontend/2002-03-11-LargeCharInString.c b/release_23/test/CFrontend/2002-03-11-LargeCharInString.c
deleted file mode 100644
index d8a1671fc773..000000000000
--- a/release_23/test/CFrontend/2002-03-11-LargeCharInString.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
-
-#include <string.h>
-
-int test(char *X) {
- /* LLVM-GCC used to emit:
- %.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00"
- */
- return strcmp(X, "\037\213");
-}