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
88681624
Commit
88681624
authored
Jun 22, 1994
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle -with-gnu-as for Alpha as it is handled for MIPS
From-SVN: r7527
parent
70864443
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/config/alpha/alpha.h
+6
-2
No files found.
gcc/config/alpha/alpha.h
View file @
88681624
...
...
@@ -93,10 +93,14 @@ extern int target_flags;
{"no-fp-regs", -3}, \
{"alpha-as", -MASK_GAS}, \
{"gas", MASK_GAS}, \
{"", TARGET_DEFAULT} }
{"", TARGET_DEFAULT
| TARGET_CPU_DEFAULT
} }
#define TARGET_DEFAULT 3
#ifndef TARGET_CPU_DEFAULT
#define TARGET_CPU_DEFAULT 0
#endif
/* Define this macro to change register usage conditional on target flags.
On the Alpha, we use this to disable the floating-point registers when
...
...
@@ -1896,7 +1900,7 @@ do { \
This is needed because the Alpha assembler provides no way
of specifying such information in the assembly file. */
#if (
TARGET_DEFAULT
& MASK_GAS) != 0
#if (
(TARGET_DEFAULT | TARGET_CPU_DEFAULT)
& MASK_GAS) != 0
#define ASM_FINAL_SPEC "\
%{malpha-as: %{!mno-mips-tfile: \
...
...
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