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
e906c889
Commit
e906c889
authored
Jan 25, 2012
by
Richard Sandiford
Committed by
Richard Sandiford
Jan 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mips.c: Don't process ASM_OPERANDS.
gcc/ * config/mips/mips.c: Don't process ASM_OPERANDS. From-SVN: r183532
parent
a76be469
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/config/mips/mips.c
+4
-1
No files found.
gcc/ChangeLog
View file @
e906c889
2012-01-25 Richard Sandiford <rdsandiford@googlemail.com>
* config/mips/mips.c: Don't process ASM_OPERANDS.
2012-01-25 Georg-Johann Lay <avr@gjlay.de>
PR target/49868
...
...
gcc/config/mips/mips.c
View file @
e906c889
...
...
@@ -3101,7 +3101,10 @@ mips_small_data_pattern_1 (rtx *loc, void *data)
{
enum
mips_symbol_context
context
;
if
(
GET_CODE
(
*
loc
)
==
LO_SUM
)
/* Ignore things like "g" constraints in asms. We make no particular
guarantee about which symbolic constants are acceptable as asm operands
versus which must be forced into a GPR. */
if
(
GET_CODE
(
*
loc
)
==
LO_SUM
||
GET_CODE
(
*
loc
)
==
ASM_OPERANDS
)
return
-
1
;
if
(
MEM_P
(
*
loc
))
...
...
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