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
e62fe68a
Commit
e62fe68a
authored
Jul 23, 2008
by
Michael Meissner
Committed by
Michael Meissner
Jul 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR 36907, breakage in building libobj with function specific changes
From-SVN: r138091
parent
fcf73884
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+7
-0
gcc/optc-gen.awk
+1
-1
gcc/opth-gen.awk
+1
-1
No files found.
gcc/ChangeLog
View file @
e62fe68a
2008
-
07
-
23
Michael
Meissner
<
gnu
@the
-
meissners
.
org
>
PR
36907
*
opth
-
gen
.
awk
:
Suppress
function
specific
features
when
building
target
libraries
.
*
optc
-
gen
.
awk
:
Ditto
.
2008
-
07
-
23
Manuel
Lopez
-
Ibanez
<
manu
@gcc
.
gnu
.
org
>
PR
35058
...
...
gcc/optc-gen.awk
View file @
e62fe68a
...
...
@@ -225,7 +225,7 @@ for (i = 0; i < n_opts; i++) {
print
"};"
print
""
;
print
"#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2)"
print
"#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2)
&& !defined(IN_TARGET_LIBS)
"
print
""
;
print
"/* Save optimization variables into a structure. */"
print
"void"
;
...
...
gcc/opth-gen.awk
View file @
e62fe68a
...
...
@@ -95,7 +95,7 @@ print ""
# Also, order the structure so that pointer fields occur first, then int
# fields, and then char fields to provide the best packing.
print
"#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2)"
print
"#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2)
&& !defined(IN_TARGET_LIBS)
"
print
""
print
"/* Structure to save/restore optimization and target specific options. */"
;
print
"struct cl_optimization GTY(())"
;
...
...
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