Skip to content
Snippets Groups Projects
Commit 6e1cfa4b authored by Aaron Ballman's avatar Aaron Ballman
Browse files

There is no std namespace for standards-based attributes. Removing the scope...

There is no std namespace for standards-based attributes. Removing the scope qualifier and updating the only affected test case.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201294 91177308-0d34-0410-b5e6-96231b3b80d8
parent 10a3be3a
No related branches found
No related tags found
No related merge requests found
...@@ -364,8 +364,7 @@ def Bounded : IgnoredAttr { ...@@ -364,8 +364,7 @@ def Bounded : IgnoredAttr {
} }
def CarriesDependency : InheritableParamAttr { def CarriesDependency : InheritableParamAttr {
let Spellings = [GNU<"carries_dependency">, CXX11<"","carries_dependency">, let Spellings = [GNU<"carries_dependency">, CXX11<"","carries_dependency">];
CXX11<"std","carries_dependency">];
let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>; let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>;
} }
...@@ -480,7 +479,7 @@ def C11NoReturn : InheritableAttr { ...@@ -480,7 +479,7 @@ def C11NoReturn : InheritableAttr {
} }
def CXX11NoReturn : InheritableAttr { def CXX11NoReturn : InheritableAttr {
let Spellings = [CXX11<"","noreturn">, CXX11<"std","noreturn">]; let Spellings = [CXX11<"","noreturn">];
let Subjects = SubjectList<[Function], ErrorDiag>; let Subjects = SubjectList<[Function], ErrorDiag>;
} }
......
...@@ -42,9 +42,6 @@ int f3 [[gnu::warn_unused_result]] (); ...@@ -42,9 +42,6 @@ int f3 [[gnu::warn_unused_result]] ();
// CHECK: {{\[}}[noreturn]]; // CHECK: {{\[}}[noreturn]];
void f4 [[noreturn]] (); void f4 [[noreturn]] ();
// CHECK: {{\[}}[std::noreturn]];
void f5 [[std::noreturn]] ();
// CHECK: __attribute__((gnu_inline)); // CHECK: __attribute__((gnu_inline));
inline void f6() __attribute__((gnu_inline)); inline void f6() __attribute__((gnu_inline));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment