diff options
author | David Blaikie <dblaikie@gmail.com> | 2019-06-08 00:01:21 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2019-06-08 00:01:21 +0000 |
commit | 8472fa6c54c9d044adcd147f6826bccebd730f30 (patch) | |
tree | 8c4cfc3fce80800e61baa5c55fd5c473594be77b /clang/test/Misc | |
parent | 6f48c076207f49dde437d85dbd5e1bcdd580f973 (diff) | |
download | bcm5719-llvm-8472fa6c54c9d044adcd147f6826bccebd730f30.tar.gz bcm5719-llvm-8472fa6c54c9d044adcd147f6826bccebd730f30.zip |
DebugInfo: Add support for 'nodebug' attribute on typedefs and alias templates
Seems like a logical extension to me - and of interest because it might
help reduce the debug info size of libc++ by applying this attribute to
type traits that have a disproportionate debug info cost compared to the
benefit (& possibly harm/confusion) they cause users.
llvm-svn: 362856
Diffstat (limited to 'clang/test/Misc')
-rw-r--r-- | clang/test/Misc/pragma-attribute-supported-attributes-list.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/pragma-attribute-supported-attributes-list.test b/clang/test/Misc/pragma-attribute-supported-attributes-list.test index 6e07e8e8111..aa71e0bc8f5 100644 --- a/clang/test/Misc/pragma-attribute-supported-attributes-list.test +++ b/clang/test/Misc/pragma-attribute-supported-attributes-list.test @@ -72,7 +72,7 @@ // CHECK-NEXT: NSConsumesSelf (SubjectMatchRule_objc_method) // CHECK-NEXT: Naked (SubjectMatchRule_function) // CHECK-NEXT: NoCommon (SubjectMatchRule_variable) -// CHECK-NEXT: NoDebug (SubjectMatchRule_hasType_functionType, SubjectMatchRule_objc_method, SubjectMatchRule_variable_not_is_parameter) +// CHECK-NEXT: NoDebug (SubjectMatchRule_type_alias, SubjectMatchRule_hasType_functionType, SubjectMatchRule_objc_method, SubjectMatchRule_variable_not_is_parameter) // CHECK-NEXT: NoDestroy (SubjectMatchRule_variable) // CHECK-NEXT: NoDuplicate (SubjectMatchRule_function) // CHECK-NEXT: NoEscape (SubjectMatchRule_variable_is_parameter) |