Commit 530d0ba5 by Neil Booth Committed by Neil Booth

c-common.h (flag_digraphs): New.

	* c-common.h (flag_digraphs): New.
	* c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
	* c-lex.c (yylex): Use flag_digraphs to decide whether to
	honour digraphs.

	* testsuite/gcc.dg/cpp/digraph1.c,
	testsuite/gcc.dg/cpp/digraph2.c,
	testsuite/gcc.dg/cpp/digraphs.c: New tests.

From-SVN: r35010
parent 1920d8c7
2000-07-13 Neil Booth <NeilB@earthling.net>
* c-common.h (flag_digraphs): New.
* c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
* c-lex.c (yylex): Use flag_digraphs to decide whether to
honour digraphs.
2000-07-13 Zack Weinberg <zack@wolery.cumb.org> 2000-07-13 Zack Weinberg <zack@wolery.cumb.org>
* gcc.c (do_spec_1): Add new %B operator. * gcc.c (do_spec_1): Add new %B operator.
......
...@@ -181,6 +181,10 @@ extern int flag_traditional; ...@@ -181,6 +181,10 @@ extern int flag_traditional;
extern int flag_isoc99; extern int flag_isoc99;
/* Nonzero means accept digraphs. */
extern int flag_digraphs;
/* Nonzero means warn about suggesting putting in ()'s. */ /* Nonzero means warn about suggesting putting in ()'s. */
extern int warn_parentheses; extern int warn_parentheses;
......
...@@ -330,6 +330,10 @@ int flag_traditional; ...@@ -330,6 +330,10 @@ int flag_traditional;
int flag_isoc99 = 0; int flag_isoc99 = 0;
/* Nonzero means accept digraphs. */
int flag_digraphs = 1;
/* Nonzero means that we have builtin functions, and main is an int */ /* Nonzero means that we have builtin functions, and main is an int */
int flag_hosted = 1; int flag_hosted = 1;
...@@ -491,6 +495,7 @@ c_decode_option (argc, argv) ...@@ -491,6 +495,7 @@ c_decode_option (argc, argv)
{ {
flag_traditional = 1; flag_traditional = 1;
flag_writable_strings = 1; flag_writable_strings = 1;
flag_digraphs = 0;
} }
else if (!strcmp (p, "-fallow-single-precision")) else if (!strcmp (p, "-fallow-single-precision"))
flag_allow_single_precision = 1; flag_allow_single_precision = 1;
...@@ -511,6 +516,7 @@ c_decode_option (argc, argv) ...@@ -511,6 +516,7 @@ c_decode_option (argc, argv)
{ {
flag_traditional = 0; flag_traditional = 0;
flag_writable_strings = 0; flag_writable_strings = 0;
flag_digraphs = 1;
} }
else if (!strncmp (p, "-std=", 5)) else if (!strncmp (p, "-std=", 5))
{ {
...@@ -530,6 +536,8 @@ c_decode_option (argc, argv) ...@@ -530,6 +536,8 @@ c_decode_option (argc, argv)
|| !strcmp (argstart, "c89")) || !strcmp (argstart, "c89"))
{ {
iso_1990: iso_1990:
flag_digraphs = 0;
iso_1990_digraphs:
flag_traditional = 0; flag_traditional = 0;
flag_writable_strings = 0; flag_writable_strings = 0;
flag_no_asm = 1; flag_no_asm = 1;
...@@ -538,8 +546,9 @@ c_decode_option (argc, argv) ...@@ -538,8 +546,9 @@ c_decode_option (argc, argv)
} }
else if (!strcmp (argstart, "iso9899:199409")) else if (!strcmp (argstart, "iso9899:199409"))
{ {
/* ??? The changes since ISO C 1990 are not supported. */ flag_digraphs = 1;
goto iso_1990; /* ??? The other changes since ISO C 1990 are not supported. */
goto iso_1990_digraphs;
} }
else if (!strcmp (argstart, "iso9899:199x") else if (!strcmp (argstart, "iso9899:199x")
|| !strcmp (argstart, "iso9899:1999") || !strcmp (argstart, "iso9899:1999")
...@@ -551,6 +560,7 @@ c_decode_option (argc, argv) ...@@ -551,6 +560,7 @@ c_decode_option (argc, argv)
flag_no_asm = 1; flag_no_asm = 1;
flag_no_nonansi_builtin = 1; flag_no_nonansi_builtin = 1;
flag_isoc99 = 1; flag_isoc99 = 1;
flag_digraphs = 1;
} }
else if (!strcmp (argstart, "gnu89")) else if (!strcmp (argstart, "gnu89"))
{ {
...@@ -559,6 +569,7 @@ c_decode_option (argc, argv) ...@@ -559,6 +569,7 @@ c_decode_option (argc, argv)
flag_no_asm = 0; flag_no_asm = 0;
flag_no_nonansi_builtin = 0; flag_no_nonansi_builtin = 0;
flag_isoc99 = 0; flag_isoc99 = 0;
flag_digraphs = 1;
} }
else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99")) else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
{ {
...@@ -567,6 +578,7 @@ c_decode_option (argc, argv) ...@@ -567,6 +578,7 @@ c_decode_option (argc, argv)
flag_no_asm = 0; flag_no_asm = 0;
flag_no_nonansi_builtin = 0; flag_no_nonansi_builtin = 0;
flag_isoc99 = 1; flag_isoc99 = 1;
flag_digraphs = 1;
} }
else else
error ("unknown C standard `%s'", argstart); error ("unknown C standard `%s'", argstart);
......
...@@ -2385,17 +2385,20 @@ yylex () ...@@ -2385,17 +2385,20 @@ yylex ()
/* digraphs */ /* digraphs */
case ':': case ':':
if (c1 == '>') if (c1 == '>' && flag_digraphs)
{ value = ']'; goto done; } { value = ']'; goto done; }
break; break;
case '<': case '<':
if (c1 == '%') if (flag_digraphs)
{ value = '{'; indent_level++; goto done; } {
if (c1 == ':') if (c1 == '%')
{ value = '['; goto done; } { value = '{'; indent_level++; goto done; }
if (c1 == ':')
{ value = '['; goto done; }
}
break; break;
case '%': case '%':
if (c1 == '>') if (c1 == '>' && flag_digraphs)
{ value = '}'; indent_level--; goto done; } { value = '}'; indent_level--; goto done; }
break; break;
} }
......
2000-07-13 Neil Booth <NeilB@earthling.net>
* testsuite/gcc.dg/cpp/digraph1.c,
testsuite/gcc.dg/cpp/digraph2.c,
testsuite/gcc.dg/cpp/digraphs.c: New tests.
2000-07-12 David Billinghurst <David Billinghurst@riotinto.com.au> 2000-07-12 David Billinghurst <David Billinghurst@riotinto.com.au>
* g77.f-torture/compile/20000630-2.f: New test. * g77.f-torture/compile/20000630-2.f: New test.
......
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:199409" } */
/* Just simple check that digraphs are on under c94, for both
preprocessor and compiler. digraphs.c is the general test. */
%:define glue
#ifndef glue
#error glue not defined!
#endif
int main (int argc, char *argv<::>)
<%
return 0;
%>
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do compile } */
/* { dg-options "-std=c89" } */
/* Just simple check that digraphs are not on in c89, for both
preprocessor and compiler. digraphs.c is the general test. */
int main (int argc, char *argv[])
{
return 0;
%> /* { dg-error "parse error" } */
/* Place this after main () so we get to test both the compiler above
and the preprocessor below. */
%:define glue
#ifdef glue
#error glue is defined!
#endif
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do run } */
/* { dg-options "-std=c99" } */
/* Fully test the 6 digraphs under c99 assumptions. Four are pasted,
to check that digraph pasting works. */
extern int strcmp (const char *, const char *);
extern void abort (void);
#define err(str) do { puts(str); abort(); } while (0)
%:define glue(x, y) x %:%: y /* #define glue(x, y) x ## y. */
#ifndef glue
#error glue not defined!
#endif
%:define str(x) %:x /* #define str(x) #x */
int main (int argc, char *argv<::>) /* argv[] */
glue (<, %) /* { */
/* di_str[] = */
const char di_str glue(<, :)glue(:, >) = str(%:%:<::><%%>%:);
/* Check the glue macro actually pastes, and that the spelling of
all digraphs is preserved. */
if (glue(str, cmp) (di_str, "%:%:<::><%%>%:"))
err ("Digraph spelling not preserved!");
return 0;
glue (%, >) /* } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment