testsuite: remove unused dg-line directive

gcc/testsuite/ChangeLog:
	* gcc.dg/plugin/diagnostic-test-paths-2.c: Remove unused dg-line
	directive.
This commit is contained in:
David Malcolm 2020-01-13 11:40:59 -05:00
parent ef4395e506
commit 2057128986
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-01-13 David Malcolm <dmalcolm@redhat.com>
* gcc.dg/plugin/diagnostic-test-paths-2.c: Remove unused dg-line
directive.
2020-01-13 Joseph Myers <joseph@codesourcery.com>
PR c/93241

View File

@ -22,7 +22,7 @@ make_a_list_of_random_ints_badly(PyObject *self,
return NULL;
}
list = PyList_New(0); /* { dg-line PyList_New } */
list = PyList_New(0);
for (i = 0; i < count; i++) {
item = PyLong_FromLong(random());