Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
fb20fc45
Commit
fb20fc45
authored
Aug 09, 1999
by
Nick Clifton
Committed by
Nick Clifton
Aug 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test all builds, not just native
From-SVN: r28623
parent
227cf171
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
gcc/testsuite/ChangeLog
+8
-0
gcc/testsuite/gcc.dg/990413-1.c
+1
-1
gcc/testsuite/gcc.misc-tests/m-un-2.c
+4
-4
No files found.
gcc/testsuite/ChangeLog
View file @
fb20fc45
1999-08-09 Nick Clifton <nickc@cygnus.com>
* gcc.misc-tests/m-un-2.c: Expect the warnings for all builds, not
just native ones.
* gcc.dg/990413-1.c: Expect the parse error for all builds, not
just native ones.
1999-08-05 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.other/local3.C: Removed XFAIL.
...
...
gcc/testsuite/gcc.dg/990413-1.c
View file @
fb20fc45
...
...
@@ -9,5 +9,5 @@ func(void)
{
FOO
(
i
=
4
)
else
;
/* { dg-error "parse error" "error on this line" { target
native
} { 12 } } */
else
;
/* { dg-error "parse error" "error on this line" { target
*-*-*
} { 12 } } */
}
gcc/testsuite/gcc.misc-tests/m-un-2.c
View file @
fb20fc45
...
...
@@ -15,14 +15,14 @@ struct vtable {
struct
vtable
mtable
=
{
malloc
,
free
};
/* { dg-warning "missing initializer" "warning regression" { target
native
} {18} } */
/* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target
native
} {18} } */
};
/* { dg-warning "missing initializer" "warning regression" { target
*-*-*
} {18} } */
/* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target
*-*-*
} {18} } */
struct
vtable
mtable2
=
{
.
_malloc
=
malloc
,
.
_realloc
=
realloc
};
/* { dg-warning "missing initializer" "warning regression" { target
native
} {24} } */
/* { dg-warning "initialization for `mtable2._free'" "warning regression" { target
native
} {24} } */
};
/* { dg-warning "missing initializer" "warning regression" { target
*-*-*
} {24} } */
/* { dg-warning "initialization for `mtable2._free'" "warning regression" { target
*-*-*
} {24} } */
struct
vtable
mtable3
=
{
.
_free
=
free
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment