llvm-project/clang/lib/Sema
Sven van Haastregt ce127bb60e [OpenCL] Support logical vector operators in C++ mode
Support logical operators on vectors in C++ for OpenCL mode, to
preserve backwards compatibility with OpenCL C.

Differential Revision: https://reviews.llvm.org/D62588

llvm-svn: 362087
2019-05-30 12:35:19 +00:00
..
AnalysisBasedWarnings.cpp [CFG] NFC: Remove implicit conversion from CFGTerminator to Stmt *. 2019-05-24 01:34:22 +00:00
CMakeLists.txt Split out modules-specific declaration handling from SemaDecl.cpp into a 2019-04-18 00:57:02 +00:00
CodeCompleteConsumer.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CoroutineStmtBuilder.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
DeclSpec.cpp [c++20] Add support for explicit(bool), as described in P0892R2. 2019-05-09 03:59:21 +00:00
DelayedDiagnostic.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
IdentifierResolver.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
JumpDiagnostics.cpp clang support gnu asm goto. 2019-05-30 01:05:46 +00:00
MultiplexExternalSemaSource.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
ParsedAttr.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
Scope.cpp Un-revert "[coroutines][PR40978] Emit error for co_yield within catch block" 2019-03-25 00:53:10 +00:00
ScopeInfo.cpp Defer creating fields for captures until we finish building the 2019-05-28 23:09:46 +00:00
Sema.cpp Split ActOnCallExpr into an ActOnCallExpr to be called by the parser, 2019-05-08 01:36:36 +00:00
SemaAccess.cpp Range-style std::find{,_if} -> llvm::find{,_if}. NFC 2019-03-31 08:48:19 +00:00
SemaAttr.cpp Add a priority field to availability attributes to prioritize explicit 2019-01-24 19:14:39 +00:00
SemaCUDA.cpp Split ActOnCallExpr into an ActOnCallExpr to be called by the parser, 2019-05-08 01:36:36 +00:00
SemaCXXScopeSpec.cpp [c++20] Implement P0846R0: allow (ADL-only) calls to template-ids whose 2019-05-09 03:31:27 +00:00
SemaCast.cpp [Sema][OpenCL] Make address space conversions a bit stricter. 2019-05-08 14:23:49 +00:00
SemaChecking.cpp [mips] Check argument for __builtin_msa_ctcmsa / __builtin_msa_cfcmsa 2019-05-29 14:59:32 +00:00
SemaCodeComplete.cpp [CodeComplete] Add semicolon when completing patterns for 'static_assert' and 'typedef 2019-05-29 15:32:17 +00:00
SemaConsumer.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
SemaCoroutine.cpp Split ActOnCallExpr into an ActOnCallExpr to be called by the parser, 2019-05-08 01:36:36 +00:00
SemaDecl.cpp Defer creating fields for captures until we finish building the 2019-05-28 23:09:46 +00:00
SemaDeclAttr.cpp Add the `objc_class_stub` attribute. 2019-05-30 04:09:01 +00:00
SemaDeclCXX.cpp Part of P1091R3: permit structured bindings to be declared 'static' and 2019-05-22 19:52:55 +00:00
SemaDeclObjC.cpp Add the `objc_class_stub` attribute. 2019-05-30 04:09:01 +00:00
SemaExceptionSpec.cpp Implement __builtin_LINE() et. al. to support source location capture. 2019-05-16 21:04:15 +00:00
SemaExpr.cpp [OpenCL] Support logical vector operators in C++ mode 2019-05-30 12:35:19 +00:00
SemaExprCXX.cpp Defer creating fields for captures until we finish building the 2019-05-28 23:09:46 +00:00
SemaExprMember.cpp Factor out repeated code to build 'this' expressions and mark them 2019-05-24 01:35:07 +00:00
SemaExprObjC.cpp Implement __builtin_LINE() et. al. to support source location capture. 2019-05-16 21:04:15 +00:00
SemaFixItUtils.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
SemaInit.cpp [Sema] Mark array element destructors referenced during initialization 2019-05-10 17:52:26 +00:00
SemaLambda.cpp Defer creating fields for captures until we finish building the 2019-05-28 23:09:46 +00:00
SemaLookup.cpp [c++20] Add support for explicit(bool), as described in P0892R2. 2019-05-09 03:59:21 +00:00
SemaModule.cpp [c++2a] Implement semantic restrictions for 'export' declarations. 2019-04-22 22:50:11 +00:00
SemaObjCProperty.cpp Range-style std::find{,_if} -> llvm::find{,_if}. NFC 2019-03-31 08:48:19 +00:00
SemaOpenMP.cpp Added an assertion to constant evaluation enty points that prohibits dependent expressions 2019-05-17 17:16:53 +00:00
SemaOverload.cpp Factor out repeated code to build 'this' expressions and mark them 2019-05-24 01:35:07 +00:00
SemaPseudoObject.cpp Split ActOnCallExpr into an ActOnCallExpr to be called by the parser, 2019-05-08 01:36:36 +00:00
SemaStmt.cpp Defer creating fields for captures until we finish building the 2019-05-28 23:09:46 +00:00
SemaStmtAsm.cpp clang support gnu asm goto. 2019-05-30 01:05:46 +00:00
SemaStmtAttr.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
SemaTemplate.cpp Refactor: split Uninitialized state on APValue into an "Absent" state 2019-05-21 23:15:18 +00:00
SemaTemplateDeduction.cpp [c++20] P0780R2: Support pack-expansion of init-captures. 2019-05-21 20:10:50 +00:00
SemaTemplateInstantiate.cpp [c++20] P0780R2: Support pack-expansion of init-captures. 2019-05-21 20:10:50 +00:00
SemaTemplateInstantiateDecl.cpp make -ftime-trace also print template arguments 2019-05-12 10:39:21 +00:00
SemaTemplateVariadic.cpp [c++20] P0780R2: Support pack-expansion of init-captures. 2019-05-21 20:10:50 +00:00
SemaType.cpp [OpenCL] Fix file-scope const sampler variable for 2.0 2019-05-27 11:19:07 +00:00
TreeTransform.h clang support gnu asm goto. 2019-05-30 01:05:46 +00:00
TypeLocBuilder.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
TypeLocBuilder.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00