Skip to content

Commit 056608a

Browse files
committed
[OpenACC][NFC] Remove temporary assert from CIndex OpenACCBindClause
This was left over from implementation and shouldn't have been left in, but in the end 'bind' doesn't require any additional work here, so this patch removes the assert.
1 parent 4784ce9 commit 056608a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

clang/tools/libclang/CIndex.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2976,9 +2976,7 @@ void OpenACCClauseEnqueue::VisitIndependentClause(
29762976
const OpenACCIndependentClause &C) {}
29772977
void OpenACCClauseEnqueue::VisitSeqClause(const OpenACCSeqClause &C) {}
29782978
void OpenACCClauseEnqueue::VisitNoHostClause(const OpenACCNoHostClause &C) {}
2979-
void OpenACCClauseEnqueue::VisitBindClause(const OpenACCBindClause &C) {
2980-
assert(false && "TODO ERICH");
2981-
}
2979+
void OpenACCClauseEnqueue::VisitBindClause(const OpenACCBindClause &C) { }
29822980
void OpenACCClauseEnqueue::VisitFinalizeClause(const OpenACCFinalizeClause &C) {
29832981
}
29842982
void OpenACCClauseEnqueue::VisitIfPresentClause(

0 commit comments

Comments
 (0)