forked from OSchip/llvm-project
Revert the unused TST_pixel entry from r95335 as it is not listed in the Sema
switch, triggering warnings. llvm-svn: 95381
This commit is contained in:
parent
8c702534cb
commit
bc50da6360
|
@ -46,7 +46,6 @@ namespace clang {
|
|||
TST_decimal32, // _Decimal32
|
||||
TST_decimal64, // _Decimal64
|
||||
TST_decimal128, // _Decimal128
|
||||
TST_pixel, // AltiVec
|
||||
TST_enum,
|
||||
TST_union,
|
||||
TST_struct,
|
||||
|
|
|
@ -113,7 +113,6 @@ public:
|
|||
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;
|
||||
|
|
|
@ -192,7 +192,6 @@ const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
|
|||
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";
|
||||
|
|
Loading…
Reference in New Issue