mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Add a timevar for late combine
When adding late-combine.cc, I forgot to add a timevar for it. gcc/ * timevar.def (TV_LATE_COMBINE): New timevar. * late-combine.cc (pass_data_late_combine): Use it.
This commit is contained in:
parent
8633bdb346
commit
a019429f36
@ -53,7 +53,7 @@ const pass_data pass_data_late_combine =
|
|||||||
RTL_PASS, // type
|
RTL_PASS, // type
|
||||||
"late_combine", // name
|
"late_combine", // name
|
||||||
OPTGROUP_NONE, // optinfo_flags
|
OPTGROUP_NONE, // optinfo_flags
|
||||||
TV_NONE, // tv_id
|
TV_LATE_COMBINE, // tv_id
|
||||||
0, // properties_required
|
0, // properties_required
|
||||||
0, // properties_provided
|
0, // properties_provided
|
||||||
0, // properties_destroyed
|
0, // properties_destroyed
|
||||||
|
@ -262,6 +262,7 @@ DEFTIMEVAR (TV_AUTO_INC_DEC , "auto inc dec")
|
|||||||
DEFTIMEVAR (TV_CSE2 , "CSE 2")
|
DEFTIMEVAR (TV_CSE2 , "CSE 2")
|
||||||
DEFTIMEVAR (TV_BRANCH_PROB , "branch prediction")
|
DEFTIMEVAR (TV_BRANCH_PROB , "branch prediction")
|
||||||
DEFTIMEVAR (TV_COMBINE , "combiner")
|
DEFTIMEVAR (TV_COMBINE , "combiner")
|
||||||
|
DEFTIMEVAR (TV_LATE_COMBINE , "late combiner")
|
||||||
DEFTIMEVAR (TV_IFCVT , "if-conversion")
|
DEFTIMEVAR (TV_IFCVT , "if-conversion")
|
||||||
DEFTIMEVAR (TV_MODE_SWITCH , "mode switching")
|
DEFTIMEVAR (TV_MODE_SWITCH , "mode switching")
|
||||||
DEFTIMEVAR (TV_SMS , "sms modulo scheduling")
|
DEFTIMEVAR (TV_SMS , "sms modulo scheduling")
|
||||||
|
Loading…
Reference in New Issue
Block a user