This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

define_reservation regexp duplicated in pentium.md for two different reservation names


I was just looking at the pentium.md file to learn about the DFA scheduler when I saw this code:

(define_reservation "pentium-firstuboth" "(pentium-load + pentium-firstu
					   + pentium-memory)")
(define_reservation "pentium-firstvboth" "(pentium-load + pentium-firstu
					   + pentium-memory)")

Note that both define_reservations are the same value. I assume that the second one was supposed to be:

(define_reservation "pentium-firstvboth" "(pentium-load + pentium-firstv
					   + pentium-memory)")

But I don't know enough about the pentium pipeline to know whether that is the correct definition. 

The version of the file I was looking at was Revision 1.1.8.1 on the subversions web site.

Jonah


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]