Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4,265
Issues
4,265
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
419
Merge Requests
419
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
53cc943a
Commit
53cc943a
authored
Aug 16, 2014
by
Gabor Greif
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fix typos 'resizze'"
this is z-encoding (as hvr tells me) This reverts commit
425d5178
.
parent
425d5178
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
includes/stg/MiscClosures.h
includes/stg/MiscClosures.h
+1
-1
rts/Linker.c
rts/Linker.c
+1
-1
rts/PrimOps.cmm
rts/PrimOps.cmm
+1
-1
No files found.
includes/stg/MiscClosures.h
View file @
53cc943a
...
...
@@ -348,7 +348,7 @@ RTS_FUN_DECL(stg_newByteArrayzh);
RTS_FUN_DECL
(
stg_newPinnedByteArrayzh
);
RTS_FUN_DECL
(
stg_newAlignedPinnedByteArrayzh
);
RTS_FUN_DECL
(
stg_shrinkMutableByteArrayzh
);
RTS_FUN_DECL
(
stg_resizeMutableByteArrayzh
);
RTS_FUN_DECL
(
stg_resiz
z
eMutableByteArrayzh
);
RTS_FUN_DECL
(
stg_casIntArrayzh
);
RTS_FUN_DECL
(
stg_newArrayzh
);
RTS_FUN_DECL
(
stg_newArrayArrayzh
);
...
...
rts/Linker.c
View file @
53cc943a
...
...
@@ -1195,7 +1195,7 @@ typedef struct _RtsSymbolVal {
SymI_HasProto(stg_newPinnedByteArrayzh) \
SymI_HasProto(stg_newAlignedPinnedByteArrayzh) \
SymI_HasProto(stg_shrinkMutableByteArrayzh) \
SymI_HasProto(stg_resiz
eMutableByteArrayzh)
\
SymI_HasProto(stg_resiz
zeMutableByteArrayzh)
\
SymI_HasProto(newSpark) \
SymI_HasProto(performGC) \
SymI_HasProto(performMajorGC) \
...
...
rts/PrimOps.cmm
View file @
53cc943a
...
...
@@ -158,7 +158,7 @@ stg_shrinkMutableByteArrayzh ( gcptr mba, W_ new_size )
// MutableByteArray resized in-place or, if not possible, a newly
// allocated (unpinned) MutableByteArray (with the original content
// copied over)
stg_resizeMutableByteArrayzh
(
gcptr
mba
,
W_
new_size
)
stg_resiz
z
eMutableByteArrayzh
(
gcptr
mba
,
W_
new_size
)
// MutableByteArray# s -> Int# -> State# s -> (# State# s,MutableByteArray# s #)
{
W_
new_size_wds
;
...
...
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