diff options
author | Seth Cantrell <seth.cantrell@gmail.com> | 2012-04-17 20:59:59 +0000 |
---|---|---|
committer | Seth Cantrell <seth.cantrell@gmail.com> | 2012-04-17 20:59:59 +0000 |
commit | 14dc87fccc1e28ab9ed95e69e74599a4223e5139 (patch) | |
tree | 7ab7c8e3f3eb6bc091efb897624c41aba969b945 /clang/test/Misc/wrong-encoding.c | |
parent | 2f05b09e18d5f167b67fcf68ca1451c7935f90de (diff) | |
download | bcm5719-llvm-14dc87fccc1e28ab9ed95e69e74599a4223e5139.tar.gz bcm5719-llvm-14dc87fccc1e28ab9ed95e69e74599a4223e5139.zip |
Revert "Nicer display of unprintable source, and fix caret display for non-ascii text"
This reverts commit e9a3b76ba589a8a884e978273beaed0d97cf9861.
Revert "fix display of source lines with null characters"
This reverts commit 70712b276e40bbe11e5063dfc7e82ce3209929cd.
llvm-svn: 154950
Diffstat (limited to 'clang/test/Misc/wrong-encoding.c')
-rw-r--r-- | clang/test/Misc/wrong-encoding.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/clang/test/Misc/wrong-encoding.c b/clang/test/Misc/wrong-encoding.c deleted file mode 100644 index bd1cf3dc02a..00000000000 --- a/clang/test/Misc/wrong-encoding.c +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -strict-whitespace %s - -void foo() { - - "§Ã"; // ø -// CHECK: {{^ "<A7><C3>"; // <F8>}} -// CHECK: {{^ \^}} - - /* þ« */ const char *d = "¥"; - -// CHECK: {{^ /\* <FE><AB> \*/ const char \*d = "<A5>";}} -// CHECK: {{^ \^}} - -// CHECK: {{^ "<A7><C3>"; // <F8>}} -// CHECK: {{^ \^~~~~~~~~~}} -} |