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
78009d9f
Commit
78009d9f
authored
Sep 30, 2010
by
Michael Meissner
Committed by
Michael Meissner
Sep 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR target/45837: Make powerpc build again
From-SVN: r164764
parent
e9853e1c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletions
+19
-1
gcc/ChangeLog
+10
-0
gcc/config/rs6000/aix.h
+4
-0
gcc/config/rs6000/option-defaults.h
+1
-1
gcc/config/rs6000/rs6000.h
+4
-0
No files found.
gcc/ChangeLog
View file @
78009d9f
2010-09-30 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/45837
* config/rs6000/aix.h (TARGET_AIX_OS): Define to be 1.
* config/rs6000/rs6000.h (TARGET_AIX_OS): Define to be 0 if not
defined.
* config/rs6000/option-defaults.h (toplevel): Change #if
TARGET_AIX to TARGET_AIX_OS to allow compiler to build after
global option changes.
2010-09-30 Jakub Jelinek <jakub@redhat.com>
* dwarf2out.c (mem_loc_descriptor): Handle IF_THEN_ELSE.
gcc/config/rs6000/aix.h
View file @
78009d9f
...
...
@@ -24,6 +24,10 @@
#undef TARGET_AIX
#define TARGET_AIX 1
/* Linux64.h wants to redefine TARGET_AIX based on -m64, but it can't be used
in the #if conditional in options-default.h, so provide another macro. */
#define TARGET_AIX_OS 1
/* AIX always has a TOC. */
#define TARGET_NO_TOC 0
#define TARGET_TOC 1
...
...
gcc/config/rs6000/option-defaults.h
View file @
78009d9f
...
...
@@ -27,7 +27,7 @@
/* This header needs to be included after any other headers affecting
TARGET_DEFAULT. */
#if TARGET_AIX
#if TARGET_AIX
_OS
#define OPT_64 "maix64"
#define OPT_32 "maix32"
#else
...
...
gcc/config/rs6000/rs6000.h
View file @
78009d9f
...
...
@@ -46,6 +46,10 @@
#define TARGET_AIX 0
#endif
#ifndef TARGET_AIX_OS
#define TARGET_AIX_OS 0
#endif
/* Control whether function entry points use a "dot" symbol when
ABI_AIX. */
#define DOT_SYMBOLS 1
...
...
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