mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-29 11:17:28 +00:00
[PR41007][OpenCL] Allow printf in C++ mode.
As for OpenCL C, we need to allow using printf and toolchain variadic functions (prefixed by "__") in C++ mode. Differential Revision: https://reviews.llvm.org/D59219 llvm-svn: 355915
This commit is contained in:
parent
c76671b231
commit
47a2c3305a
@ -4585,7 +4585,7 @@ static TypeSourceInfo *GetFullTypeForDeclarator(TypeProcessingState &state,
|
||||
if (FTI.isVariadic &&
|
||||
!(D.getIdentifier() &&
|
||||
((D.getIdentifier()->getName() == "printf" &&
|
||||
LangOpts.OpenCLVersion >= 120) ||
|
||||
(LangOpts.OpenCLCPlusPlus || LangOpts.OpenCLVersion >= 120)) ||
|
||||
D.getIdentifier()->getName().startswith("__")))) {
|
||||
S.Diag(D.getIdentifierLoc(), diag::err_opencl_variadic_function);
|
||||
D.setInvalidType(true);
|
||||
|
@ -28,7 +28,7 @@
|
||||
// enabled by default with -cl-std=CL2.0).
|
||||
//
|
||||
// RUN: %clang_cc1 %s -triple amdgcn-unknown-unknown -verify -pedantic -fsyntax-only -cl-std=CL2.0 -finclude-default-header
|
||||
// RUN: %clang_cc1 %s -triple spir-unknown-unknown -verify -pedantic -fsyntax-only -cl-std=c++
|
||||
// RUN: %clang_cc1 %s -triple spir-unknown-unknown -verify -pedantic -fsyntax-only -cl-std=c++ -finclude-default-header
|
||||
|
||||
#ifdef _OPENCL_H_
|
||||
// expected-no-diagnostics
|
||||
|
Loading…
Reference in New Issue
Block a user