Commit 7c6d34c7 by Per Bothner Committed by Per Bothner

decl-2.c: Add extra line breaks.


	* gcc.dg/decl-2.c:  Add extra line breaks.  That way we can verify
	that diagnotics refer to correct token.
	* gcc.dg/unused-3.c: Likewise.

From-SVN: r96339
parent 75328849
......@@ -17,6 +17,12 @@
2005-03-11 Per Bothner <per@bothner.com>
* gcc.dg/decl-2.c: Add extra line breaks. That way we can verify
that diagnotics refer to correct token.
* gcc.dg/unused-3.c: Likewise.
2005-03-11 Per Bothner <per@bothner.com>
* gcc.dg/cpp/direct2.c: With new lexer changes, error "before string
constant" is now actually on same line as string constant.
* gcc.dg/cpp/direct2s.c: Likewise.
......
/* PR c/7411 */
/* Contributed by Christian Ehrhardt */
/* Added extra line-breaks to check that diagnostics refer to correct token.
--Per Bothner. */
/* { dg-do compile } */
void foo(void)
{
char c; /* { dg-error "previous declaration" } */
char
c /* { dg-error "previous declaration" } */
;
int i;
int c = i; /* { dg-error "conflicting types" } */
int
c /* { dg-error "conflicting types" } */
= i;
}
/* Copyright (C) 2000 Free Software Foundation. */
/* Added extra line-breaks to check that diagnostics refer to correct token.
--Per Bothner. */
/* { dg-do compile } */
/* { dg-options "-Wunused" } */
typedef short unused_type __attribute__ ((unused));
main ()
{
short x; /* { dg-warning "unused variable" "unused variable warning" } */
short
x /* { dg-warning "unused variable" "unused variable warning" } */
;
unused_type y;
}
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