Revert r131672 until __underlying_type is properly implemented in the

template case.

llvm-svn: 131692
This commit is contained in:
Alexis Hunt 2011-05-19 22:52:25 +00:00
parent 023416f73c
commit 7957fdb60a
2 changed files with 0 additions and 5 deletions

View File

@ -602,7 +602,6 @@ static bool HasFeature(const Preprocessor &PP, const IdentifierInfo *II) {
.Case("is_trivial", LangOpts.CPlusPlus)
.Case("is_trivially_copyable", LangOpts.CPlusPlus)
.Case("is_union", LangOpts.CPlusPlus)
.Case("underlying_type", LangOpts.CPlusPlus)
.Case("tls", PP.getTargetInfo().isTLSSupported())
.Default(false);
}

View File

@ -99,7 +99,3 @@ int is_standard_layout();
int is_trivially_copyable();
#endif
// CHECK: int is_trivially_copyable();
#if __has_feature(underlying_type)
int underlying_type();
#endif