From 5c52bf3a06a1f1160fb4b7ac111514242323012b Mon Sep 17 00:00:00 2001 From: rms Date: Sat, 27 Feb 1993 04:12:36 +0000 Subject: (parse_escape): Delete case for '^'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3550 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cexp.y | 7 ------- 1 file changed, 7 deletions(-) (limited to 'gcc/cexp.y') diff --git a/gcc/cexp.y b/gcc/cexp.y index e2608e63f2c..1cd2111464c 100644 --- a/gcc/cexp.y +++ b/gcc/cexp.y @@ -767,13 +767,6 @@ parse_escape (string_ptr) case 0: (*string_ptr)--; return 0; - case '^': - c = *(*string_ptr)++; - if (c == '\\') - c = parse_escape (string_ptr); - if (c == '?') - return 0177; - return (c & 0200) | (c & 037); case '0': case '1': -- cgit v1.2.1