This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 9c9d4a4 Pass -ffunction-sections/-fdata-sections along to gold-plugin new d149463 Module: emit initializers for C/ObjC after r276159. new fff8e6c [CUDA] Add Sema::CUDADiagBuilder and Sema::CUDADiagIf{Device, [...] new a1f58c8 [CUDA] Disallow __shared__ variables in host functions. new 75a3d31 [CUDA] Allow static variables in __host__ __device__ function [...]
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Basic/DiagnosticSemaKinds.td | 9 +- include/clang/Sema/Sema.h | 125 ++++++++++++++--- lib/Sema/SemaCUDA.cpp | 155 +++++++++++---------- lib/Sema/SemaDecl.cpp | 19 ++- lib/Sema/SemaDeclAttr.cpp | 4 + lib/Sema/SemaExprCXX.cpp | 3 +- lib/Sema/SemaStmt.cpp | 3 +- lib/Sema/SemaType.cpp | 4 +- test/Modules/Inputs/objc-initializer/X.h | 3 + .../module.modulemap} | 0 test/Modules/objc-initializer.m | 9 ++ test/SemaCUDA/bad-attributes.cu | 1 + test/SemaCUDA/device-var-init.cu | 6 +- test/SemaCUDA/exceptions-host-device.cu | 8 +- test/SemaCUDA/exceptions.cu | 8 +- test/SemaCUDA/static-vars-hd.cu | 20 +++ 16 files changed, 262 insertions(+), 115 deletions(-) create mode 100644 test/Modules/Inputs/objc-initializer/X.h copy test/Modules/Inputs/{objc-hidden/System/module.map => objc-initializer/module [...] create mode 100644 test/Modules/objc-initializer.m create mode 100644 test/SemaCUDA/static-vars-hd.cu