Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Unified Diff: gcc/gcc/testsuite/g++.dg/other/cv_func.C

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/opt/vt1.C ('k') | gcc/gcc/testsuite/g++.dg/other/error23.C » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/g++.dg/other/cv_func.C
diff --git a/gcc/gcc/testsuite/g++.dg/other/cv_func.C b/gcc/gcc/testsuite/g++.dg/other/cv_func.C
index 4f103824d9394f8bbfdd7ffa211b48d781d47353..788c173b423733fedc0baa5827fccac4e60a9673 100644
--- a/gcc/gcc/testsuite/g++.dg/other/cv_func.C
+++ b/gcc/gcc/testsuite/g++.dg/other/cv_func.C
@@ -4,7 +4,6 @@ typedef int FIC(int) const;
typedef int FI(int);
FIC f; // { dg-error "qualified" }
-// { dg-error "ignoring" "ignoring" { target *-*-* } 6 }
struct S {
FIC f; // OK
@@ -15,7 +14,7 @@ struct S {
};
FIC S::*pm = &S::f;
const FI S::*pm2 = &S::f; // { dg-error "qualifier" }
-// { dg-error "cannot convert" "cannot convert" { target *-*-* } 17 }
+// { dg-error "cannot convert" "cannot convert" { target *-*-* } 16 }
const FIC S::*pm3 = &S::f; // { dg-error "qualifier" }
int S::f(int) const
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/opt/vt1.C ('k') | gcc/gcc/testsuite/g++.dg/other/error23.C » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698