Lines Matching refs:feature
4 // - 0 if the machine matches the asked-for feature.
6 // - 2 if the asked-for feature isn't recognised (this will be the case for
7 // any feature if run on a non-MIPS machine).
47 static int go(char *feature)
50 if (strcmp(feature, "fpu") == 0) {
60 else if (strcmp(feature, "mips32-dsp") == 0) {
68 } else if (strcmp(feature, "mips32-dspr2") == 0) {
76 } else if (strcmp(feature, "cavium-octeon") == 0) {
84 } else if (strcmp(feature, "cavium-octeon2") == 0) {
92 } else if (strcmp(feature, "mips-be") == 0) {
106 static int go(char *feature)
108 /* Feature is not recognised. (non-MIPS machine!) */
121 fprintf( stderr, "usage: mips_features <feature>\n" );