Lines Matching refs:GS
87 void CheckGotoStmt(GotoStmt *GS);
581 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) { in VerifyJumps() local
583 if (GS->getLabel()->getStmt()) { in VerifyJumps()
584 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps()
589 CheckGotoStmt(GS); in VerifyJumps()
898 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { in CheckGotoStmt() argument
899 if (GS->getLabel()->isMSAsmLabel()) { in CheckGotoStmt()
900 S.Diag(GS->getGotoLoc(), diag::err_goto_ms_asm_label) in CheckGotoStmt()
901 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
902 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label) in CheckGotoStmt()
903 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()