Lines Matching defs:GS
97 void CheckGotoStmt(GotoStmt *GS);
680 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) {
682 if (GS->getLabel()->getStmt()) {
683 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
688 CheckGotoStmt(GS);
1015 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) {
1016 if (GS->getLabel()->isMSAsmLabel()) {
1017 S.Diag(GS->getGotoLoc(), diag::err_goto_ms_asm_label)
1018 << GS->getLabel()->getIdentifier();
1019 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label)
1020 << GS->getLabel()->getIdentifier();