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
3c0a049e
Commit
3c0a049e
authored
Dec 21, 2001
by
Richard Henderson
Committed by
Richard Henderson
Dec 21, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.old-deja/g++.eh/badalloc1.C (malloc): Fix typo.
From-SVN: r48246
parent
c6dcc80e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C
+1
-1
No files found.
gcc/testsuite/ChangeLog
View file @
3c0a049e
2001-12-21 Richard Henderson <rth@redhat.com>
* g++.old-deja/g++.eh/badalloc1.C (malloc): Fix typo.
2001-12-20 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20011218-1.c: New test.
...
...
gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C
View file @
3c0a049e
...
...
@@ -36,7 +36,7 @@ extern "C" void *malloc (size_t size)
return
0
;
p
->
size
=
size
;
size
=
(
size
+
__alignof__
(
object
)
+
1
)
&
-
__alignof__
(
object
);
size
=
(
size
+
__alignof__
(
object
)
-
1
)
&
-
__alignof__
(
object
);
pos
+=
size
+
sizeof
(
object
);
// Verify that we didn't run out of memory before getting initialized.
...
...
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