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
73cb28d7
Commit
73cb28d7
authored
Dec 02, 2011
by
Michael Meissner
Committed by
Michael Meissner
Dec 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re PR target/51390 (Builtin changes on November 29th, broke recip-5.c)
PR 51390 From-SVN: r181930
parent
5f2e30ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/ChangeLog
+8
-0
gcc/config/rs6000/rs6000.c
+2
-5
No files found.
gcc/ChangeLog
View file @
73cb28d7
2011
-
12
-
02
Michael
Meissner
<
meissner
@
the
-
meissners
.
org
>
PR
target
/
51390
*
config
/
rs6000
/
rs6000
.
c
(
def_builtin
):
Use
the
correct
field
to
figure
out
the
function
's attributes.
(struct builtin_description): Mark mask field as const since we no
longer need to modify it for SPE and PAIRED builtins.
2011-12-02 Joseph Myers <joseph@codesourcery.com>
Revert:
gcc/config/rs6000/rs6000.c
View file @
73cb28d7
...
...
@@ -215,10 +215,7 @@ static GTY(()) section *toc_section;
struct
builtin_description
{
/* mask is not const because we're going to alter it below. This
nonsense will go away when we rewrite the -march infrastructure
to give us more target flag bits. */
unsigned
int
mask
;
const
unsigned
int
mask
;
const
enum
insn_code
icode
;
const
char
*
const
name
;
const
enum
rs6000_builtins
code
;
...
...
@@ -9394,7 +9391,7 @@ static void
def_builtin
(
const
char
*
name
,
tree
type
,
enum
rs6000_builtins
code
)
{
tree
t
;
unsigned
classify
=
rs6000_builtin_info
[(
int
)
code
].
mask
;
unsigned
classify
=
rs6000_builtin_info
[(
int
)
code
].
attr
;
const
char
*
attr_string
=
""
;
gcc_assert
(
name
!=
NULL
);
...
...
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