Home | History | Annotate | Download | only in tests

Lines Matching full: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, "mips32-dsp") == 0) {
58 } else if (strcmp(feature, "mips32-dspr2") == 0) {
66 } else if (strcmp(feature, "cavium-octeon") == 0) {
74 } else if (strcmp(feature, "cavium-octeon2") == 0) {
82 } else if (strcmp(feature, "mips-be") == 0) {
96 static int go(char *feature)
98 /* Feature is not recognised. (non-MIPS machine!) */
111 fprintf( stderr, "usage: mips_features <feature>\n" );