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
44e55536
Commit
44e55536
authored
May 11, 2002
by
Tim Josling
Committed by
Tim Josling
May 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fix to treelang; Update MAINTAINERS and ChangeLog to reflect this.
From-SVN: r53375
parent
2292e8fc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
0 deletions
+26
-0
ChangeLog
+4
-0
MAINTAINERS
+1
-0
gcc/treelang/ChangeLog
+5
-0
gcc/treelang/treetree.c
+16
-0
No files found.
ChangeLog
View file @
44e55536
...
...
@@ -11,6 +11,10 @@
* config-ml.in: Allow for PWDCMD to determine ML_POPDIR.
2002-05-07 Tim Josling <tej@melbpc.org.au>
* MAINTAINERS: Add self.
2002-05-06 Loren J. Rittle <ljrittle@acm.org>
* ltmain.sh: Detect and handle object name conflicts
...
...
MAINTAINERS
View file @
44e55536
...
...
@@ -142,6 +142,7 @@ Pico-Java port Steve Chamberlain sac@transmeta.com
RTEMS Ports Joel Sherrill
predict.def Jan Hubicka jh@suse.cz
contrib/regression Geoff Keating geoffk@redhat.com
treelang Tim Josling tej@melbpc.org.au
Note individuals who maintain parts of the compiler need approval to check
in changes outside of the parts of the compiler they maintain.
...
...
gcc/treelang/ChangeLog
View file @
44e55536
2002-05-11 Tim Josling <tej@melbpc.org.au>
* treetree.c: (cpp_define) Add.
(cpp_get_callbacks) Add.
2002-05-07 Tim Josling <tej@melbpc.org.au>
* treetree.c: (cpp_get_options) Add.
...
...
gcc/treelang/treetree.c
View file @
44e55536
...
...
@@ -1135,6 +1135,22 @@ cpp_options
abort
();
}
/* Should not be called for treelang. */
void
cpp_define
(
cpp_reader
*
cr
ATTRIBUTE_UNUSED
,
const
char
*
c
ATTRIBUTE_UNUSED
)
{
abort
();
}
/* Should not be called for treelang. */
cpp_callbacks
*
cpp_get_callbacks
(
cpp_reader
*
cr
ATTRIBUTE_UNUSED
)
{
abort
();
}
/* Create the predefined scalar types of C,
and some nodes representing standard constants (0, 1, (void *) 0).
Initialize the global binding level.
...
...
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