Searched refs:lhsMod (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dfunc.d3009 Checks for mismatching modifiers between `lhsMod` and `rhsMod` and prints the
3012 The modifiers of the `lhsMod` mismatching the ones with the `rhsMod` are printed, i.e.
3017 lhsMod = modifier on the left-hand side
3018 lhsMod = modifier on the right-hand side
3023 if the `lhsMod` is missing those modifiers (compared to rhs).
3025 auto MODMatchToBuffer(OutBuffer* buf, ubyte lhsMod, ubyte rhsMod)
3035 bool bothMutable = ((lhsMod & rhsMod) == 0);
3036 bool sharedMismatch = ((lhsMod ^ rhsMod) & MODFlags.shared_) != 0;
3037 bool sharedMismatchOnly = ((lhsMod ^ rhsMod) == MODFlags.shared_);
3039 if (lhsMod
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dfunc.c3119 void MODMatchToBuffer(OutBuffer *buf, unsigned char lhsMod, unsigned char rhsMod) argument
3121 bool bothMutable = ((lhsMod & rhsMod) == 0);
3122 bool sharedMismatch = ((lhsMod ^ rhsMod) & MODshared) != 0;
3123 bool sharedMismatchOnly = ((lhsMod ^ rhsMod) == MODshared);
3125 if (lhsMod & MODshared)
3127 else if (sharedMismatch && !(lhsMod & MODimmutable))
3132 else if (lhsMod & MODimmutable)
3134 else if (lhsMod & MODconst)
3136 else if (lhsMod & MODwild)
H A Dexpression.c47 void MODMatchToBuffer(OutBuffer *buf, unsigned char lhsMod, unsigned char rhsMod);
H A Dexpressionsem.c51 void MODMatchToBuffer(OutBuffer *buf, unsigned char lhsMod, unsigned char rhsMod);

Completed in 218 milliseconds