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
0e73769e
Commit
0e73769e
authored
Nov 30, 2003
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Nov 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/cpp/assert4.c: Check more #system assertions.
From-SVN: r74076
parent
d7f16c2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
1 deletions
+61
-1
gcc/testsuite/ChangeLog
+5
-1
gcc/testsuite/gcc.dg/cpp/assert4.c
+56
-0
No files found.
gcc/testsuite/ChangeLog
View file @
0e73769e
2003-11-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/cpp/assert4.c: Check more #system assertions.
2003-11-29 Joseph S. Myers <jsm@polyomino.org.uk>
PR c/10333
...
...
@@ -9,7 +13,7 @@
2003-11-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
*
testsuite/
gcc.dg/cpp/assert4.c: Update.
* gcc.dg/cpp/assert4.c: Update.
2003-11-28 Eric Botcazou <ebotcazou@libertysurf.fr>
...
...
gcc/testsuite/gcc.dg/cpp/assert4.c
View file @
0e73769e
...
...
@@ -78,6 +78,14 @@
# error
#endif
#if defined __unix__
# if !#system(unix)
# error
# endif
#elif #system(unix)
# error
#endif
#if defined __rtems__
# if !#system(rtems)
# error
...
...
@@ -86,6 +94,54 @@
# error
#endif
#if defined __vms__
# if !#system(vms)
# error
# endif
#elif #system(vms)
# error
#endif
#if defined __mvs__
# if !#system(mvs)
# error
# endif
#elif #system(mvs)
# error
#endif
#if defined __MSDOS__
# if !#system(msdos)
# error
# endif
#elif #system(msdos)
# error
#endif
#if defined __WINNT__
# if !#system(winnt)
# error
# endif
#elif #system(winnt)
# error
#endif
#if defined __BEOS__
# if !#system(beos)
# error
# endif
#elif #system(beos)
# error
#endif
#if defined __netware__
# if !#system(netware)
# error
# endif
#elif #system(netware)
# error
#endif
/* Check for #cpu and #machine assertions. */
...
...
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