Searched refs:JumpScope (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | JumpDiagnostics.cpp | 690 unsigned JumpScope = LabelAndGotoScopes[G]; in VerifyJumps() local 692 if (JumpScope != TargetScope) in VerifyJumps() 693 DiagnoseIndirectOrAsmJump(G, JumpScope, LD, TargetScope); in VerifyJumps() 756 using JumpScope = std::pair<unsigned, Stmt *>; in VerifyIndirectJumps() typedef 757 SmallVector<JumpScope, 32> JumpScopes; in VerifyIndirectJumps() 814 for (auto [JumpScope, JumpStmt] : JumpScopes) { in VerifyIndirectJumps() 815 unsigned Scope = JumpScope; in VerifyIndirectJumps() 826 for (unsigned S = JumpScope; S != Scope; S = Scopes[S].ParentScope) in VerifyIndirectJumps() 845 DiagnoseIndirectOrAsmJump(JumpStmt, JumpScope, TargetLabel, TargetScope); in VerifyIndirectJumps() 888 void JumpScopeChecker::DiagnoseIndirectOrAsmJump(Stmt *Jump, unsigned JumpScope, in DiagnoseIndirectOrAsmJump() argument [all …]
|