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
a2369ed3
Commit
a2369ed3
authored
21 years ago
by
Dale Johannesen
Committed by
Dale Johannesen
21 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ISO C90 prototypes.
From-SVN: r71336
parent
4ca0d6d4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+6
-0
gcc/config/rs6000/rs6000-c.c
+2
-4
gcc/config/rs6000/rs6000-protos.h
+0
-0
gcc/config/rs6000/rs6000.c
+0
-0
gcc/config/rs6000/sysv4.h
+1
-1
No files found.
gcc/ChangeLog
View file @
a2369ed3
2003-09-12 Dale Johannesen <dale@apple.com>
* config/rs6000/rs6000-protos.h: Use C90 prototypes.
* config/rs6000/rs6000-c.c: Ditto.
* config/rs6000/rs6000.c: Ditto.
* config/rs6000/ sysv4.h: Ditto.
2003-09-12 Chris Lattner <sabre@nondot.org>
* loop.c: Move comments describing BIV's and GIV's to top of file
...
...
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/rs6000-c.c
View file @
a2369ed3
...
...
@@ -48,8 +48,7 @@
} while (0)
void
rs6000_pragma_longcall
(
pfile
)
cpp_reader
*
pfile
ATTRIBUTE_UNUSED
;
rs6000_pragma_longcall
(
cpp_reader
*
pfile
ATTRIBUTE_UNUSED
)
{
tree
x
,
n
;
...
...
@@ -80,8 +79,7 @@ rs6000_pragma_longcall (pfile)
#define builtin_assert(TXT) cpp_assert (pfile, TXT)
void
rs6000_cpu_cpp_builtins
(
pfile
)
cpp_reader
*
pfile
;
rs6000_cpu_cpp_builtins
(
cpp_reader
*
pfile
)
{
if
(
TARGET_POWER2
)
builtin_define
(
"_ARCH_PWR2"
);
...
...
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/rs6000-protos.h
View file @
a2369ed3
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/rs6000.c
View file @
a2369ed3
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/sysv4.h
View file @
a2369ed3
...
...
@@ -494,7 +494,7 @@ toc_section () \
} \
} \
\
extern int in_toc_section
PARAMS ((void));
\
extern int in_toc_section
(void);
\
int in_toc_section () \
{ \
return in_section == in_toc; \
...
...
This diff is collapsed.
Click to expand it.
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