Merge pull request #1244 from emankov/cuDNN

[HIPIFY][#1239] Fix an assert
Bu işleme şunda yer alıyor:
Evgeny Mankov
2019-07-22 22:18:58 +03:00
işlemeyi yapan: GitHub
işleme 543da8e8ae
+3 -2
Dosyayı Görüntüle
@@ -267,11 +267,12 @@ void HipifyAction::PragmaDirective(clang::SourceLocation Loc, clang::PragmaIntro
return;
}
clang::Preprocessor& PP = getCompilerInstance().getPreprocessor();
const clang::Token tok = PP.LookAhead(0);
clang::Token tok;
PP.Lex(tok);
StringRef Text(SM.getCharacterData(tok.getLocation()), tok.getLength());
if (Text == "once") {
pragmaOnce = true;
pragmaOnceLoc = PP.LookAhead(1).getLocation();
pragmaOnceLoc = tok.getEndLoc();
}
}