Skip to content

Commit

Permalink
[OpenCL] Drop spurious semicolon in generated file; NFC
Browse files Browse the repository at this point in the history
llvm-svn: 370744
  • Loading branch information
svenvh committed Sep 3, 2019
1 parent f124158 commit 92b2be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ static void OCL2Qual(ASTContext &Context, const OpenCLTypeStruct &Ty,
<< T->getValueAsDef("QTName")->getValueAsString("Name") << ", ";
}
}
OS << "});\n;";
OS << "});\n";
// GenTypeNumTypes is the number of types in the GenType
// (e.g. float/double/half).
OS << " GenTypeNumTypes = "
Expand Down

0 comments on commit 92b2be1

Please sign in to comment.