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
319d9434
Commit
319d9434
authored
Oct 06, 1999
by
Michael Meissner
Committed by
Michael Meissner
Oct 06, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix sanity check
From-SVN: r29845
parent
2224ac3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+6
-0
gcc/varray.h
+2
-2
No files found.
gcc/ChangeLog
View file @
319d9434
Wed
Oct
6
16
:
10
:
35
1999
Michael
Meissner
<
meissner
@cygnus
.
com
>
*
varray
.
h
(
VARRAY_CHECK
)
:
Fix
up
appropriate
revision
check
,
in
case
somebody
tries
to
compile
--
enable
-
checking
code
with
gcc
1
.
34
or
such
.
Wed
Oct
6
12
:
22
:
50
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
genrecog
.
c
(
add_to_sequence
)
:
Verify
operand
to
label_ref
is
...
...
gcc/varray.h
View file @
319d9434
/* Virtual array support.
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998
, 1999
Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
This file is part of GNU CC.
...
...
@@ -163,7 +163,7 @@ extern varray_type varray_grow PROTO((varray_type, size_t));
#define VARRAY_SIZE(VA) ((VA)->num_elements)
/* Check for VARRAY_xxx macros being in bound. */
#if defined ENABLE_CHECKING && (__GNUC__ > 2 ||
__GNUC_MINOR__ > 6
)
#if defined ENABLE_CHECKING && (__GNUC__ > 2 ||
(__GNUC__ == 2 &&__GNUC_MINOR__ > 6)
)
extern
void
varray_check_failed
PROTO
((
varray_type
,
size_t
,
const
char
*
,
int
,
const
char
*
))
ATTRIBUTE_NORETURN
;
...
...
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