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
568c5140
Commit
568c5140
authored
Nov 14, 2000
by
DJ Delorie
Committed by
DJ Delorie
Nov 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/v850/v850.c: Remove obstacks.
From-SVN: r37467
parent
ab6c59fd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/ChangeLog
+4
-0
gcc/config/v850/v850.c
+1
-4
No files found.
gcc/ChangeLog
View file @
568c5140
2000-11-14 DJ Delorie <dj@redhat.com>
* config/v850/v850.c: Remove obstacks.
Tue Nov 14 21:54:31 2000 Marek Michalkiewicz <marekm@linux.org.pl> & Denis Chertykov <denisc@overta.ru>
* config/avr/avr.c (avr_case_values_threshold): New.
...
...
gcc/config/v850/v850.c
View file @
568c5140
...
...
@@ -35,7 +35,6 @@ Boston, MA 02111-1307, USA. */
#include "recog.h"
#include "expr.h"
#include "function.h"
#include "obstack.h"
#include "toplev.h"
#include "cpplib.h"
#include "c-lex.h"
...
...
@@ -2086,8 +2085,6 @@ v850_interrupt_function_p (func)
}
extern
struct
obstack
*
saveable_obstack
;
void
v850_encode_data_area
(
decl
)
tree
decl
;
...
...
@@ -2134,7 +2131,7 @@ v850_encode_data_area (decl)
return
;
}
newstr
=
obstack_alloc
(
saveable_obstack
,
len
+
2
);
newstr
=
ggc_alloc_string
(
NULL
,
len
+
2
);
strcpy
(
newstr
+
1
,
str
);
...
...
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