Basic: Add CUDA language option

llvm-svn: 120543
This commit is contained in:
Peter Collingbourne 2010-12-01 03:15:10 +00:00
parent b16def2be9
commit 07525a0726
1 changed files with 2 additions and 1 deletions

View File

@ -94,6 +94,7 @@ public:
// smallest integer type with enough room.
unsigned OpenCL : 1; // OpenCL C99 language extensions.
unsigned CUDA : 1; // CUDA C++ language extensions.
unsigned AssumeSaneOperatorNew : 1; // Whether to add __attribute__((malloc))
// to the declaration of C++'s new
@ -157,7 +158,7 @@ public:
RTTI = 1;
LaxVectorConversions = 1;
HeinousExtensions = 0;
AltiVec = OpenCL = StackProtector = 0;
AltiVec = OpenCL = CUDA = StackProtector = 0;
SymbolVisibility = (unsigned) DefaultVisibility;