]> granicus.if.org Git - clang/commitdiff
[Lex] Support more type-traits in __has_feature
authorDavid Majnemer <david.majnemer@gmail.com>
Tue, 24 May 2016 16:53:13 +0000 (16:53 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Tue, 24 May 2016 16:53:13 +0000 (16:53 +0000)
It looks like we forgot to update the __has_feature support when we
added some of the type traits.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270580 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/PPMacroExpansion.cpp
test/Lexer/has_feature_type_traits.cpp

index 79ca9ebb706a662690853a92f9b8a275e731b827..130744fe2b13ce4dbe11b1b8e1cc90b7bc6ea51e 100644 (file)
@@ -1191,8 +1191,10 @@ static bool HasFeature(const Preprocessor &PP, StringRef Feature) {
       .Case("has_nothrow_copy", LangOpts.CPlusPlus)
       .Case("has_nothrow_constructor", LangOpts.CPlusPlus)
       .Case("has_trivial_assign", LangOpts.CPlusPlus)
+      .Case("has_trivial_move_assign", LangOpts.CPlusPlus)
       .Case("has_trivial_copy", LangOpts.CPlusPlus)
       .Case("has_trivial_constructor", LangOpts.CPlusPlus)
+      .Case("has_trivial_move_constructor", LangOpts.CPlusPlus)
       .Case("has_trivial_destructor", LangOpts.CPlusPlus)
       .Case("has_virtual_destructor", LangOpts.CPlusPlus)
       .Case("is_abstract", LangOpts.CPlusPlus)
@@ -1201,14 +1203,21 @@ static bool HasFeature(const Preprocessor &PP, StringRef Feature) {
       .Case("is_class", LangOpts.CPlusPlus)
       .Case("is_constructible", LangOpts.CPlusPlus)
       .Case("is_convertible_to", LangOpts.CPlusPlus)
+      .Case("is_destructible",
+            LangOpts.CPlusPlus &&LangOpts.MicrosoftExt)
       .Case("is_empty", LangOpts.CPlusPlus)
       .Case("is_enum", LangOpts.CPlusPlus)
       .Case("is_final", LangOpts.CPlusPlus)
       .Case("is_literal", LangOpts.CPlusPlus)
-      .Case("is_standard_layout", LangOpts.CPlusPlus)
+      .Case("is_nothrow_assignable", LangOpts.CPlusPlus)
+      .Case("is_nothrow_constructible", LangOpts.CPlusPlus)
+      .Case("is_nothrow_destructible",
+            LangOpts.CPlusPlus && LangOpts.MicrosoftExt)
       .Case("is_pod", LangOpts.CPlusPlus)
       .Case("is_polymorphic", LangOpts.CPlusPlus)
-      .Case("is_sealed", LangOpts.MicrosoftExt)
+      .Case("is_sealed",
+            LangOpts.CPlusPlus && LangOpts.MicrosoftExt)
+      .Case("is_standard_layout", LangOpts.CPlusPlus)
       .Case("is_trivial", LangOpts.CPlusPlus)
       .Case("is_trivially_assignable", LangOpts.CPlusPlus)
       .Case("is_trivially_constructible", LangOpts.CPlusPlus)
index 6636e7b39638a62c6422fea7b8cc41646636f147..743d2e24ab0a0ff1c3e6e460e84397c93248ec16 100644 (file)
@@ -20,6 +20,16 @@ int has_trivial_assign();
 #endif
 // CHECK: int has_trivial_assign();
 
+#if __has_feature(has_trivial_move_assign)
+int has_trivial_move_assign();
+#endif
+// CHECK: int has_trivial_move_assign();
+
+#if __has_feature(has_trivial_move_constructor)
+int has_trivial_move_constructor();
+#endif
+// CHECK: int has_trivial_move_constructor();
+
 #if __has_feature(has_trivial_copy)
 int has_trivial_copy();
 #endif
@@ -105,6 +115,16 @@ int is_literal();
 #endif
 // CHECK: int is_literal();
 
+#if __has_feature(is_nothrow_assignable)
+int is_nothrow_assignable();
+#endif
+// CHECK: int is_nothrow_assignable();
+
+#if __has_feature(is_nothrow_constructible)
+int is_nothrow_constructible();
+#endif
+// CHECK: int is_nothrow_constructible();
+
 #if __has_feature(is_standard_layout)
 int is_standard_layout();
 #endif