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
e9e077fa
Commit
e9e077fa
authored
Jan 29, 2009
by
Rainer Orth
Committed by
Rainer Orth
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/i386/sol2-10.h [!HAVE_AS_IX86_DIFF_SECT_DELTA]
(ASM_OUTPUT_DWARF_PCREL): Define. From-SVN: r143758
parent
2af2dbdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletions
+15
-1
gcc/ChangeLog
+5
-0
gcc/config/i386/sol2-10.h
+10
-1
No files found.
gcc/ChangeLog
View file @
e9e077fa
2008-01-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/i386/sol2-10.h [!HAVE_AS_IX86_DIFF_SECT_DELTA]
(ASM_OUTPUT_DWARF_PCREL): Define.
2008-01-29 Vladimir Makarov <vmakarov@redhat.com>
2008-01-29 Vladimir Makarov <vmakarov@redhat.com>
* doc/tm.texi (TARGET_IRA_COVER_CLASSES): Modify description.
* doc/tm.texi (TARGET_IRA_COVER_CLASSES): Modify description.
...
...
gcc/config/i386/sol2-10.h
View file @
e9e077fa
/* Solaris 10 configuration.
/* Solaris 10 configuration.
Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
Copyright (C) 2004, 2006, 2007
, 2008, 2009
Free Software Foundation, Inc.
Contributed by CodeSourcery, LLC.
Contributed by CodeSourcery, LLC.
This file is part of GCC.
This file is part of GCC.
...
@@ -39,6 +39,15 @@ along with GCC; see the file COPYING3. If not see
...
@@ -39,6 +39,15 @@ along with GCC; see the file COPYING3. If not see
#ifndef HAVE_AS_IX86_DIFF_SECT_DELTA
#ifndef HAVE_AS_IX86_DIFF_SECT_DELTA
#undef JUMP_TABLES_IN_TEXT_SECTION
#undef JUMP_TABLES_IN_TEXT_SECTION
#define JUMP_TABLES_IN_TEXT_SECTION 1
#define JUMP_TABLES_IN_TEXT_SECTION 1
/* The native Solaris assembler cannot handle the SYMBOL-. syntax, but
requires SYMBOL@rel/@rel64 instead. */
#define ASM_OUTPUT_DWARF_PCREL(FILE, SIZE, LABEL) \
do { \
fputs (integer_asm_op (SIZE, FALSE), FILE); \
assemble_name (FILE, LABEL); \
fputs (SIZE == 8 ? "@rel64" : "@rel", FILE); \
} while (0)
#endif
#endif
#undef NO_PROFILE_COUNTERS
#undef NO_PROFILE_COUNTERS
...
...
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