[HIPIFY][fix][#1109] Do not preserve extern __shared__ for IncompleteArrayType

+ Update tests accordingly


[ROCm/hip commit: fa3dda9107]
This commit is contained in:
Evgeny Mankov
2019-05-15 20:05:56 +03:00
rodzic ea09ce30c5
commit 2472ece71d
3 zmienionych plików z 4 dodań i 1 usunięć
@@ -352,7 +352,7 @@ bool HipifyAction::cudaSharedIncompleteArrayVar(const clang::ast_matchers::Match
}
if (!typeName.empty()) {
clang::SourceLocation slStart = llcompat::getBeginLoc(sharedVar->getTypeSourceInfo()->getTypeLoc());
clang::SourceLocation slStart = sharedVar->getOuterLocStart();
clang::SourceLocation slEnd = llcompat::getEndLoc(sharedVar->getTypeSourceInfo()->getTypeLoc());
clang::SourceManager* SM = Result.SourceManager;
size_t repLength = SM->getCharacterData(slEnd) - SM->getCharacterData(slStart) + 1;