* doc/tm.texi (TARGET_SCHED_SET_SCHED_FLAGS): Fix argument list.
authorJoern Rennecke <amylaar@spamcop.net>
Wed, 20 Jan 2010 22:21:27 +0000 (22:21 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Wed, 20 Jan 2010 22:21:27 +0000 (22:21 +0000)
From-SVN: r156091

gcc/ChangeLog
gcc/doc/tm.texi

index 4a70dc7..346c795 100644 (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
index 22ea8a1..c8f211d 100644 (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