reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
943 OS.indent(Indentation) << "static bool checkDecoderPredicate(unsigned Idx, " 945 Indentation += 2; 947 OS.indent(Indentation) << "switch (Idx) {\n"; 948 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n"; 951 OS.indent(Indentation) << "case " << Index++ << ":\n"; 952 OS.indent(Indentation+2) << "return (" << Predicate << ");\n"; 954 OS.indent(Indentation) << "}\n"; 957 OS.indent(Indentation) << "llvm_unreachable(\"Invalid index!\");\n"; 959 Indentation -= 2; 960 OS.indent(Indentation) << "}\n\n";