> > Based purely on context, in the following documentation from: > > http://gcc.gnu.org/onlinedocs/gccint/Code-Macros.html#Code-Macros > > > > 13.22.2 Code Macros > > Code macros operate in a similar way to mode macros. See Mode Macros. > > The construct: > > (define_code_macro name [(code1 "cond1") ... (coden "condn")]) > > defines a pseudo rtx code name that can be instantiated as codei if > condition condi is true. Each codei must have the same rtx format. See > RTL Classes. > > > > should not the text "codei" be replaced with "code1" and similarly for > "condi"?
Not really, think of i as a place holder of all the values from 1 to n. -- Pinski