[cfe-commits] r95381 - in /cfe/trunk: include/clang/Basic/Specifiers.h include/clang/Parse/DeclSpec.h lib/Parse/DeclSpec.cpp
Chandler Carruth
chandlerc at gmail.com
Thu Feb 4 23:38:55 PST 2010
Author: chandlerc
Date: Fri Feb 5 01:38:55 2010
New Revision: 95381
URL: http://llvm.org/viewvc/llvm-project?rev=95381&view=rev
Log:
Revert the unused TST_pixel entry from r95335 as it is not listed in the Sema
switch, triggering warnings.
Modified:
cfe/trunk/include/clang/Basic/Specifiers.h
cfe/trunk/include/clang/Parse/DeclSpec.h
cfe/trunk/lib/Parse/DeclSpec.cpp
Modified: cfe/trunk/include/clang/Basic/Specifiers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/Specifiers.h?rev=95381&r1=95380&r2=95381&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/Specifiers.h (original)
+++ cfe/trunk/include/clang/Basic/Specifiers.h Fri Feb 5 01:38:55 2010
@@ -46,7 +46,6 @@
TST_decimal32, // _Decimal32
TST_decimal64, // _Decimal64
TST_decimal128, // _Decimal128
- TST_pixel, // AltiVec
TST_enum,
TST_union,
TST_struct,
Modified: cfe/trunk/include/clang/Parse/DeclSpec.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/DeclSpec.h?rev=95381&r1=95380&r2=95381&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/DeclSpec.h (original)
+++ cfe/trunk/include/clang/Parse/DeclSpec.h Fri Feb 5 01:38:55 2010
@@ -113,7 +113,6 @@
static const TST TST_decimal32 = clang::TST_decimal32;
static const TST TST_decimal64 = clang::TST_decimal64;
static const TST TST_decimal128 = clang::TST_decimal128;
- static const TST TST_pixel = clang::TST_pixel;
static const TST TST_enum = clang::TST_enum;
static const TST TST_union = clang::TST_union;
static const TST TST_struct = clang::TST_struct;
Modified: cfe/trunk/lib/Parse/DeclSpec.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/DeclSpec.cpp?rev=95381&r1=95380&r2=95381&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/DeclSpec.cpp (original)
+++ cfe/trunk/lib/Parse/DeclSpec.cpp Fri Feb 5 01:38:55 2010
@@ -192,7 +192,6 @@
case DeclSpec::TST_decimal32: return "_Decimal32";
case DeclSpec::TST_decimal64: return "_Decimal64";
case DeclSpec::TST_decimal128: return "_Decimal128";
- case DeclSpec::TST_pixel: return "__pixel";
case DeclSpec::TST_enum: return "enum";
case DeclSpec::TST_class: return "class";
case DeclSpec::TST_union: return "union";
More information about the cfe-commits
mailing list