Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
binutils-gdb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastien Michelland
binutils-gdb
Commits
552e377b
Commit
552e377b
authored
20 years ago
by
Joel Brobecker
Browse files
Options
Downloads
Patches
Plain Diff
* aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
Fixes a link link failure.
parent
349766b2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gdb/ChangeLog
+5
-0
5 additions, 0 deletions
gdb/ChangeLog
gdb/aix-thread.c
+4
-4
4 additions, 4 deletions
gdb/aix-thread.c
with
9 additions
and
4 deletions
gdb/ChangeLog
+
5
−
0
View file @
552e377b
2004-05-13 J. Brobecker <brobecker@gnat.com>
* aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
Fixes a link link failure.
2004-05-13 J. Brobecker <brobecker@gnat.com>
* aix-thread.c (store_regs_kernel_thread): Fix a little obvious
...
...
This diff is collapsed.
Click to expand it.
gdb/aix-thread.c
+
4
−
4
View file @
552e377b
...
...
@@ -1027,7 +1027,7 @@ supply_fprs (double *vals)
/* This function should never be called on architectures without
floating-point registers. */
gdb_assert
(
ppc_floating_point_p
(
current_gdbarch
));
gdb_assert
(
ppc_floating_point_
unit_
p
(
current_gdbarch
));
for
(
regno
=
0
;
regno
<
ppc_num_fprs
;
regno
++
)
supply_register
(
regno
+
tdep
->
ppc_fp0_regnum
,
(
char
*
)
(
vals
+
regno
));
...
...
@@ -1122,7 +1122,7 @@ fetch_regs_user_thread (pthdb_pthread_t pdtid)
/* Floating-point registers. */
if
(
ppc_floating_point_p
(
current_gdbarch
))
if
(
ppc_floating_point_
unit_
p
(
current_gdbarch
))
supply_fprs
(
ctx
.
fpr
);
/* Special registers. */
...
...
@@ -1284,7 +1284,7 @@ fill_fprs (double *vals)
/* This function should never be called on architectures without
floating-point registers. */
gdb_assert
(
ppc_floating_point_p
(
current_gdbarch
));
gdb_assert
(
ppc_floating_point_
unit_
p
(
current_gdbarch
));
for
(
regno
=
tdep
->
ppc_fp0_regnum
;
regno
<
tdep
->
ppc_fp0_regnum
+
ppc_num_fprs
;
...
...
@@ -1408,7 +1408,7 @@ store_regs_user_thread (pthdb_pthread_t pdtid)
}
/* Collect floating-point register values from the regcache. */
if
(
ppc_floating_point_p
(
current_gdbarch
))
if
(
ppc_floating_point_
unit_
p
(
current_gdbarch
))
fill_fprs
(
ctx
.
fpr
);
/* Special registers (always kept in ctx as 64 bits). */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment