Lines Matching defs:GS
97 void CheckGotoStmt(GotoStmt *GS);
670 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) {
672 if (GS->getLabel()->getStmt()) {
673 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
678 CheckGotoStmt(GS);
1006 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) {
1007 if (GS->getLabel()->isMSAsmLabel()) {
1008 S.Diag(GS->getGotoLoc(), diag::err_goto_ms_asm_label)
1009 << GS->getLabel()->getIdentifier();
1010 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label)
1011 << GS->getLabel()->getIdentifier();