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
58dc8547
Commit
58dc8547
authored
Apr 04, 2005
by
Alan Modra
Committed by
Alan Modra
Apr 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mf-runtime.c (__mfu_unregister): Warning fix for char unsigned.
From-SVN: r97532
parent
4b8d544b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
libmudflap/ChangeLog
+4
-0
libmudflap/mf-runtime.c
+2
-3
No files found.
libmudflap/ChangeLog
View file @
58dc8547
2005-04-04 Alan Modra <amodra@bigpond.net.au>
* mf-runtime.c (__mfu_unregister): Warning fix for char unsigned.
2005-03-21 Mike Stump <mrs@apple.com>
* mf-heuristics.c: Fix whitespace at end of line.
...
...
libmudflap/mf-runtime.c
View file @
58dc8547
...
...
@@ -1273,9 +1273,8 @@ __mfu_unregister (void *ptr, size_t sz, int type)
}
/* Manage the object cemetary. */
if
(
__mf_opts
.
persistent_count
>
0
&&
old_obj
->
type
>=
0
&&
old_obj
->
type
<=
__MF_TYPE_MAX_CEM
)
if
(
__mf_opts
.
persistent_count
>
0
&&
(
unsigned
)
old_obj
->
type
<=
__MF_TYPE_MAX_CEM
)
{
old_obj
->
deallocated_p
=
1
;
old_obj
->
dealloc_pc
=
(
uintptr_t
)
__builtin_return_address
(
0
);
...
...
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