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
9d99ca5b
Commit
9d99ca5b
authored
Jul 06, 2001
by
Zack Weinberg
Committed by
Zack Weinberg
Jul 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* varray.c (varray_check_failed): Use internal_error.
From-SVN: r43815
parent
39f5fa33
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/varray.c
+3
-3
No files found.
gcc/ChangeLog
View file @
9d99ca5b
2001-07-06 Zack Weinberg <zackw@stanford.edu>
* varray.c (varray_check_failed): Use internal_error.
2001-07-05 Andrew Haley <aph@redhat.com>
* Makefile.in (LIB2_DIVMOD_FUNCS): New.
...
...
gcc/varray.c
View file @
9d99ca5b
...
...
@@ -84,9 +84,9 @@ varray_check_failed (va, n, file, line, function)
int
line
;
const
char
*
function
;
{
error
(
"Virtual array %s[%lu]: element %lu out of bounds
"
,
va
->
name
,
(
unsigned
long
)
va
->
num_elements
,
(
unsigned
long
)
n
);
fancy_abort
(
file
,
line
,
function
);
internal_error
(
"Virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d
"
,
va
->
name
,
(
unsigned
long
)
va
->
num_elements
,
(
unsigned
long
)
n
,
function
,
trim_filename
(
file
),
line
);
}
#endif
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