diff options
author | Michael Kruse <llvm@meinersbur.de> | 2018-06-25 20:06:13 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2018-06-25 20:06:13 +0000 |
commit | 41dd6ced2c8323aa804c3aed57f120746ab7f3fc (patch) | |
tree | bafdc35a26910c8a213596380a4bc25559485804 /clang/test/Index/complete-with-annotations.cpp | |
parent | 05f6626fc48b40c332c0f4d082284b39d38e23c7 (diff) | |
download | bcm5719-llvm-41dd6ced2c8323aa804c3aed57f120746ab7f3fc.tar.gz bcm5719-llvm-41dd6ced2c8323aa804c3aed57f120746ab7f3fc.zip |
Revert "Append new attributes to the end of an AttributeList."
This reverts commit r335084 as requested by David Jones and
Eric Christopher because of differences of emitted warnings.
llvm-svn: 335516
Diffstat (limited to 'clang/test/Index/complete-with-annotations.cpp')
-rw-r--r-- | clang/test/Index/complete-with-annotations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Index/complete-with-annotations.cpp b/clang/test/Index/complete-with-annotations.cpp index 459bd9f5731..7bad8f1b7cb 100644 --- a/clang/test/Index/complete-with-annotations.cpp +++ b/clang/test/Index/complete-with-annotations.cpp @@ -14,7 +14,7 @@ void X::doSomething() { } // CHECK: CXXMethod:{ResultType void}{TypedText doSomething}{LeftParen (}{RightParen )} (34) -// CHECK: FieldDecl:{ResultType int}{TypedText field} (35) ("one", "two", "three") +// CHECK: FieldDecl:{ResultType int}{TypedText field} (35) ("three", "two", "one") // CHECK: CXXMethod:{ResultType void}{TypedText func2}{LeftParen (}{RightParen )} (34) ("some annotation") // CHECK: FieldDecl:{ResultType int}{TypedText member2} (35) ("another annotation", "some annotation") // CHECK: CXXMethod:{ResultType X &}{TypedText operator=}{LeftParen (}{Placeholder const X &}{RightParen )} (79) |