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
d758c1db
Commit
d758c1db
authored
Oct 05, 2002
by
Bruce Korb
Committed by
Bruce Korb
Oct 05, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add fixes for new hp/ux patch
From-SVN: r57845
parent
b3dc87c5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
4 deletions
+18
-4
gcc/ChangeLog
+6
-0
gcc/fixinc/fixincl.x
+4
-3
gcc/fixinc/inclhack.def
+3
-1
gcc/fixinc/tests/base/stdlib.h
+5
-0
No files found.
gcc/ChangeLog
View file @
d758c1db
2002
-
10
-
04
Bruce
Korb
<
bkorb
@gnu
.
org
>
*
fixinc
/
inclhack
.
def
(
hpux11_abs
)
:
use
format
fix
*
fixinc
/
fixincl
.
x
:
regenerate
*
fixinc
/
tests
/
base
/
stdlib
.
h
:
accommodate
new
fix
test
Sat
Oct
5
19
:
42
:
45
CEST
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
c
-
common
.
c
(
cb_register_builtins
)
:
Use
really_no_inline
.
...
...
gcc/fixinc/fixincl.x
View file @
d758c1db
...
...
@@ -1942,8 +1942,9 @@ static tTestDesc aHpux11_AbsTests[] = {
/*
* Fix Command Arguments for Hpux11_Abs
*/
static const char* apzHpux11_AbsPatch[] = { "sed",
"-e", "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/",
static const char* apzHpux11_AbsPatch[] = {
"format",
"if !defined(_MATH_INCLUDED) || defined(__GNUG__)",
(char*)NULL };
/* * * * * * * * * * * * * * * * * * * * * * * * * *
...
...
@@ -6134,7 +6135,7 @@ tFixDesc fixDescList[ FIX_COUNT ] = {
{ zHpux11_AbsName, zHpux11_AbsList,
apzHpux11_AbsMachs,
HPUX11_ABS_TEST_CT, FD_MACH_ONLY,
HPUX11_ABS_TEST_CT, FD_MACH_ONLY
| FD_SUBROUTINE
,
aHpux11_AbsTests, apzHpux11_AbsPatch, 0 },
{ zHpux11_Size_TName, zHpux11_Size_TList,
...
...
gcc/fixinc/inclhack.def
View file @
d758c1db
...
...
@@ -1172,7 +1172,9 @@ fix = {
mach = ia64-hp-hpux11*;
files = stdlib.h;
select = "ifndef _MATH_INCLUDED";
sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
c_fix = format;
c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
// sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
test_text = "#ifndef _MATH_INCLUDED";
};
...
...
gcc/fixinc/tests/base/stdlib.h
View file @
d758c1db
...
...
@@ -16,6 +16,11 @@
#endif
/* ARM_WCHAR_CHECK */
#if defined( HPUX11_ABS_CHECK )
#if !defined(_MATH_INCLUDED) || defined(__GNUG__)
#endif
/* HPUX11_ABS_CHECK */
#if defined( INT_ABORT_FREE_AND_EXIT_CHECK )
extern
void
abort
(
int
);
extern
void
free
(
void
*
);
...
...
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