summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/mangle-ms-return-qualifiers.cpp
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2012-09-03 09:08:10 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2012-09-03 09:08:10 +0000
commita04ca5c4e091f567230fc95c6b2715576ad0893b (patch)
treea5271c72aba043e78db3e96fc4a9b779e635e6b0 /test/CodeGenCXX/mangle-ms-return-qualifiers.cpp
parent1d01afe4d5883d7ec538b739aa7922d7de46f192 (diff)
Fix PR13444 - wrong mangling of "const char * const *" and friends with "-cxx-abi microsoft"
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163110 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/mangle-ms-return-qualifiers.cpp')
-rw-r--r--test/CodeGenCXX/mangle-ms-return-qualifiers.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/CodeGenCXX/mangle-ms-return-qualifiers.cpp b/test/CodeGenCXX/mangle-ms-return-qualifiers.cpp
index a5d03b3435..63bc4a9eb3 100644
--- a/test/CodeGenCXX/mangle-ms-return-qualifiers.cpp
+++ b/test/CodeGenCXX/mangle-ms-return-qualifiers.cpp
@@ -167,7 +167,4 @@ function_pointer* g3() { return 0; }
// CHECK: "\01?g3@@YAPAP6AHH@ZXZ"
const function_pointer* g4() { return 0; }
-// The mangling of g4 is currently "\01?g4@@YAPQ6AHH@ZXZ" which is wrong.
-// This looks related to http://llvm.org/PR13444
-// FIXME: replace CHECK-NOT with CHECK once it is fixed.
-// CHECK-NOT: "\01?g4@@YAPBQ6AHH@ZXZ"
+// CHECK: "\01?g4@@YAPBQ6AHH@ZXZ"