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]

Re: genrecog problem


  In message <199911041112.aa16843@gremlin-relay.ics.uci.edu>you write:
  > I run into problems with genrecog, the file it generates: insn-recog.c
  > contains a bad value for a case label in recog_2
  > 
  >   switch (GET_MODE (x1))
  >     {
  >     case DFmode:
  >       goto L1208;
  >     case SFmode:
  >       goto L1209;
  >     case SImode:
  >       goto L1210;
  >     case DImode:
  >       goto L1212;
  >     case HImode:
  >       goto L1213;
  >     case QImode:
  >       goto L1218;
  >     case mode:
  > 	^^^^^^^
  > 	this is not defined anywhere, and I have no idea how it is
  >     produced... 
Probably means the mode on one of your define_insns is wrong or missing.
jeff


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