Skip to content
Snippets Groups Projects
Commit 088ce440 authored by Michal Ludvig's avatar Michal Ludvig
Browse files

2003-06-06 Michal Ludvig <mludvig@suse.cz>

	* x86-64-tdep.c (x86_64_fill_fxsave): Pass correct regnums
	to regcache_collect().
parent c16d554d
No related branches found
No related tags found
No related merge requests found
2003-06-06 Michal Ludvig <mludvig@suse.cz>
* x86-64-tdep.c (x86_64_fill_fxsave): Pass correct regnums
to regcache_collect().
2003-06-05 J. Brobecker <brobecker@gnat.com>
* hppa-hpux-tdep.c (hppa_hpux_init_abi): New function, setting
......
......@@ -1246,7 +1246,7 @@ x86_64_fill_fxsave (char *fxsave, int regnum)
i387_fill_fxsave (fxsave, regnum);
if (regnum == -1 || regnum == I387_FISEG_REGNUM)
regcache_collect (regnum, fxsave + 12);
regcache_collect (I387_FISEG_REGNUM, fxsave + 12);
if (regnum == -1 || regnum == I387_FOSEG_REGNUM)
regcache_collect (regnum, fxsave + 20);
regcache_collect (I387_FOSEG_REGNUM, fxsave + 20);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment