]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
/cp
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Jan 2019 08:52:38 +0000 (08:52 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Jan 2019 08:52:38 +0000 (08:52 +0000)
2019-01-08  Paolo Carlini  <paolo.carlini@oracle.com>

* decl.c (grok_reference_init): Improve error location.
(grokdeclarator): Likewise, improve two locations.

/testsuite
2019-01-08  Paolo Carlini  <paolo.carlini@oracle.com>

* g++.dg/diagnostic/constexpr2.C: New.
* g++.dg/diagnostic/ref3.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@267756 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/diagnostic/constexpr2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/diagnostic/ref3.C [new file with mode: 0644]

index 91465daea613b7d7de17f2466af83ae35afbd2f2..3167b49b6e026007196e0a52588faef02fc052e2 100644 (file)
@@ -1,3 +1,8 @@
+2019-01-08  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * decl.c (grok_reference_init): Improve error location.
+       (grokdeclarator): Likewise, improve two locations.
+
 2019-01-08  Marek Polacek  <polacek@redhat.com>
 
        PR c++/88538 - braced-init-list in template-argument-list.
index 7e4e93c420132de05960c09219f4476899a7adeb..267303e0b7060440821a9cca4622703f81c00d28 100644 (file)
@@ -5357,7 +5357,8 @@ grok_reference_init (tree decl, tree type, tree init, int flags)
       if ((DECL_LANG_SPECIFIC (decl) == 0
           || DECL_IN_AGGR_P (decl) == 0)
          && ! DECL_THIS_EXTERN (decl))
-       error ("%qD declared as reference but not initialized", decl);
+       error_at (DECL_SOURCE_LOCATION (decl),
+                 "%qD declared as reference but not initialized", decl);
       return NULL_TREE;
     }
 
@@ -12517,8 +12518,9 @@ grokdeclarator (const cp_declarator *declarator,
                            unqualified_id);
                else if (constexpr_p && !initialized)
                  {
-                   error ("%<constexpr%> static data member %qD must have an "
-                          "initializer", decl);
+                   error_at (DECL_SOURCE_LOCATION (decl),
+                             "%<constexpr%> static data member %qD must "
+                             "have an initializer", decl);
                    constexpr_p = false;
                  }
 
@@ -12756,8 +12758,9 @@ grokdeclarator (const cp_declarator *declarator,
          }
        else if (constexpr_p && DECL_EXTERNAL (decl))
          {
-           error ("declaration of %<constexpr%> variable %qD "
-                  "is not a definition", decl);
+           error_at (DECL_SOURCE_LOCATION (decl),
+                     "declaration of %<constexpr%> variable %qD "
+                     "is not a definition", decl);
            constexpr_p = false;
          }
 
index 3d7023f18c05c0ddc1ee448879ab46976a0633fe..47b6116845ffd49a1f569cf3bd325d10f421c0ea 100644 (file)
@@ -1,3 +1,8 @@
+2019-01-08  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * g++.dg/diagnostic/constexpr2.C: New.
+       * g++.dg/diagnostic/ref3.C: Likewise.
+
 2019-01-08  Marek Polacek  <polacek@redhat.com>
 
        PR c++/88538 - braced-init-list in template-argument-list.
diff --git a/gcc/testsuite/g++.dg/diagnostic/constexpr2.C b/gcc/testsuite/g++.dg/diagnostic/constexpr2.C
new file mode 100644 (file)
index 0000000..7afb5a2
--- /dev/null
@@ -0,0 +1,8 @@
+// { dg-do compile { target c++11 } }
+
+extern constexpr int i __attribute__((unused));  // { dg-error "22:declaration of .constexpr. variable .i." }
+
+struct S
+{
+  constexpr static int i __attribute__((unused));  // { dg-error "24:.constexpr. static data member .i." }
+};
diff --git a/gcc/testsuite/g++.dg/diagnostic/ref3.C b/gcc/testsuite/g++.dg/diagnostic/ref3.C
new file mode 100644 (file)
index 0000000..f43f5a3
--- /dev/null
@@ -0,0 +1 @@
+int& i __attribute__((unused));  // { dg-error "6:.i. declared as reference" }