* doc/tm.texi (TARGET_SCHED_SET_SCHED_FLAGS): Fix argument list.

From-SVN: r156091
This commit is contained in:
Joern Rennecke 2010-01-20 22:21:27 +00:00 committed by Joern Rennecke
parent ef93ad59d1
commit 50e87e30cd
2 changed files with 7 additions and 7 deletions

View file

@ -1,3 +1,7 @@
2010-01-20 Joern Rennecke <amylaar@spamcop.net>
* doc/tm.texi (TARGET_SCHED_SET_SCHED_FLAGS): Fix argument list.
2010-01-20 Richard Guenther <rguenther@suse.de>
PR tree-optimization/42717

View file

@ -6653,14 +6653,10 @@ the hook is used to cancel data speculative insns when the ALAT table
is nearly full.
@end deftypefn
@deftypefn {Target Hook} void TARGET_SCHED_SET_SCHED_FLAGS (unsigned int *@var{flags}, spec_info_t @var{spec_info})
@deftypefn {Target Hook} void TARGET_SCHED_SET_SCHED_FLAGS (struct spec_info_def *@var{spec_info})
This hook is used by the insn scheduler to find out what features should be
enabled/used. @var{flags} initially may have either the SCHED_RGN or SCHED_EBB
bit set. This denotes the scheduler pass for which the data should be
provided. The target backend should modify @var{flags} by modifying
the bits corresponding to the following features: USE_DEPS_LIST, USE_GLAT,
DETACH_LIFE_INFO, and DO_SPECULATION@. For the DO_SPECULATION feature
an additional structure @var{spec_info} should be filled by the target.
enabled/used.
The structure *@var{spec_info} should be filled in by the target.
The structure describes speculation types that can be used in the scheduler.
@end deftypefn