Home | History | Annotate | Download | only in InstPrinter

Lines Matching defs:CC

166   int CC = (int)MI->getOperand(opNum).getImm();
180 // Make sure CC is a fp conditional flag.
181 CC = (CC < 16) ? (CC + 16) : CC;
185 // Make sure CC is a cp conditional flag.
186 CC = (CC < 32) ? (CC + 32) : CC;
189 O << SPARCCondCodeToString((SPCC::CondCodes)CC);