diff options
author | Alexey Bader <aleksey.bader@mail.ru> | 2015-09-15 11:18:52 +0000 |
---|---|---|
committer | Alexey Bader <aleksey.bader@mail.ru> | 2015-09-15 11:18:52 +0000 |
commit | 9c8453fb4b44435d25dbc2d35293a600fc107fb1 (patch) | |
tree | 18c735dfd84f4e0ac91412c3004ce0e76260f8dc /clang/lib/Sema/Sema.cpp | |
parent | da8d6203f46ed4baaecdb096dcd46517d95f9fab (diff) | |
download | bcm5719-llvm-9c8453fb4b44435d25dbc2d35293a600fc107fb1.tar.gz bcm5719-llvm-9c8453fb4b44435d25dbc2d35293a600fc107fb1.zip |
[OpenCL] Add new types for OpenCL 2.0.
Patch by Pedro Ferreira.
Reviewers: pekka.jaaskelainen
Differential Revision: http://reviews.llvm.org/D12855
llvm-svn: 247676
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 728032b8562..b009123c8c7 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -213,6 +213,18 @@ void Sema::Initialize() { addImplicitTypedef("sampler_t", Context.OCLSamplerTy); addImplicitTypedef("event_t", Context.OCLEventTy); if (getLangOpts().OpenCLVersion >= 200) { + addImplicitTypedef("image2d_depth_t", Context.OCLImage2dDepthTy); + addImplicitTypedef("image2d_array_depth_t", + Context.OCLImage2dArrayDepthTy); + addImplicitTypedef("image2d_msaa_t", Context.OCLImage2dMSAATy); + addImplicitTypedef("image2d_array_msaa_t", Context.OCLImage2dArrayMSAATy); + addImplicitTypedef("image2d_msaa_depth_t", Context.OCLImage2dMSAADepthTy); + addImplicitTypedef("image2d_array_msaa_depth_t", + Context.OCLImage2dArrayMSAADepthTy); + addImplicitTypedef("clk_event_t", Context.OCLClkEventTy); + addImplicitTypedef("queue_t", Context.OCLQueueTy); + addImplicitTypedef("ndrange_t", Context.OCLNDRangeTy); + addImplicitTypedef("reserve_id_t", Context.OCLReserveIDTy); addImplicitTypedef("atomic_int", Context.getAtomicType(Context.IntTy)); addImplicitTypedef("atomic_uint", Context.getAtomicType(Context.UnsignedIntTy)); |