Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
b59499c9
Commit
b59499c9
authored
May 22, 2015
by
Michael Arntzenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add comments on code that needs to be changed for libgcc 4.9
parent
1c3806b1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
from_cpython/Include/dictobject.h
from_cpython/Include/dictobject.h
+2
-1
from_cpython/Include/object.h
from_cpython/Include/object.h
+3
-1
No files found.
from_cpython/Include/dictobject.h
View file @
b59499c9
...
...
@@ -94,7 +94,8 @@ struct _dictobject {
#endif
typedef
struct
{
PyObject_HEAD
;
char
_filler
[
48
];
char
_filler
[
48
];
// gcc 4.8
// char _filler[56]; // gcc 4.9
}
PyDictObject
;
// Pyston change: these are no longer static objects:
...
...
from_cpython/Include/object.h
View file @
b59499c9
...
...
@@ -454,7 +454,9 @@ struct _typeobject {
void
*
_hcls
;
void
*
_hcattrs
;
char
_dep_getattrs
[
56
];
// FIXME: this is hardcoding the size of this particular implementation of std::unordered_map
// FIXME: this is hardcoding the size of this particular implementation of std::unordered_map
char
_dep_getattrs
[
56
];
// gcc 4.8
// char _dep_getattrs[64]; // gcc 4.9
char
_ics
[
32
];
void
*
_gcvisit_func
;
void
*
_dtor
;
...
...
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