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
e3d693e9
Commit
e3d693e9
authored
Jul 27, 2007
by
Steve Ellcey
Committed by
Steve Ellcey
Jul 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/ia64/vect.md (vec_initv2si): Remove bad BIG_ENDIAN test.
From-SVN: r126995
parent
da7d4908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/ChangeLog
+4
-0
gcc/config/ia64/vect.md
+1
-4
No files found.
gcc/ChangeLog
View file @
e3d693e9
2007-07-27 Steve Ellcey <sje@cup.hp.com>
* config/ia64/vect.md (vec_initv2si): Remove bad BIG_ENDIAN test.
2007-07-27 Richard Sandiford <richard@codesourcery.com>
* doc/invoke.texi (mdsp, mdspr2): Document the __mips_dsp,
...
...
gcc/config/ia64/vect.md
View file @
e3d693e9
...
...
@@ -801,10 +801,7 @@
if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
{
rtvec v = rtvec_alloc (2);
RTVEC_ELT (v, 0) = TARGET_BIG_ENDIAN ? op2 : op1;
RTVEC_ELT (v, 1) = TARGET_BIG_ENDIAN ? op1 : op2;;
x = gen_rtx_CONST_VECTOR (V2SImode, v);
x = gen_rtx_CONST_VECTOR (V2SImode, XVEC (operands
[
1
]
, 0));
emit_move_insn (operands
[
0
]
, x);
DONE;
}
...
...
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