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
bc3cf760
Commit
bc3cf760
authored
Nov 26, 2002
by
Jim Wilson
Committed by
Jim Wilson
Nov 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Portable .NET bug with IA-64 pointer size.
* src/types.c (FFI_TYPE_POINTER): Has size 8 on IA64. From-SVN: r59541
parent
32e098dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
libffi/ChangeLog
+4
-0
libffi/src/types.c
+2
-1
No files found.
libffi/ChangeLog
View file @
bc3cf760
2002-11-26 Jim Wilson <wilson@redhat.com>
* src/types.c (FFI_TYPE_POINTER): Has size 8 on IA64.
2002-11-15 Ulrich Weigand <uweigand@de.ibm.com>
* src/s390/sysv.S (.eh_frame section): Adapt to pcrel FDE encoding.
...
...
libffi/src/types.c
View file @
bc3cf760
...
...
@@ -42,7 +42,8 @@ FFI_INTEGRAL_TYPEDEF(uint32, 4, 4, FFI_TYPE_UINT32);
FFI_INTEGRAL_TYPEDEF
(
sint32
,
4
,
4
,
FFI_TYPE_SINT32
);
FFI_INTEGRAL_TYPEDEF
(
float
,
4
,
4
,
FFI_TYPE_FLOAT
);
#if defined ALPHA || defined SPARC64 || defined X86_64 || defined S390X
#if defined ALPHA || defined SPARC64 || defined X86_64 || defined S390X \
|| defined IA64
FFI_INTEGRAL_TYPEDEF
(
pointer
,
8
,
8
,
FFI_TYPE_POINTER
);
...
...
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