comparison gcc/testsuite/gcc.dg/plugin/location-overflow-test-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
3 /* We use location_overflow_plugin.c, which injects the case that location_t 3 /* We use location_overflow_plugin.c, which injects the case that location_t
4 values have exceeded LINE_MAP_MAX_LOCATION_WITH_COLS, and hence no column 4 values have exceeded LINE_MAP_MAX_LOCATION_WITH_COLS, and hence no column
5 numbers are available. */ 5 numbers are available. */
6 6
7 /* Verify that we're in column-less mode. */ 7 /* Verify that we're in column-less mode. */
8 extern unknown_type test; /* { dg-error "0: unknown type name" } */ 8 extern unknown_type test; /* { dg-error "-:unknown type name" } */
9 9
10 /* PR c++/68819: verify that -Wmisleading-indentation is suppressed. */ 10 /* PR c++/68819: verify that -Wmisleading-indentation is suppressed. */
11 11
12 int 12 int
13 fn_1 (int flag) 13 fn_1 (int flag)
14 { 14 {
15 int x = 4, y = 5; 15 int x = 4, y = 5;
16 if (flag) x = 3; y = 2; /* { dg-message "disabled from this point" } */ 16 if (flag) x = 3; y = 2; /* { dg-message "-:disabled from this point" } */
17 return x * y; 17 return x * y;
18 } 18 }
19 19
20 /* ...and that a "sorry" is only emitted the first time. */ 20 /* ...and that a "sorry" is only emitted the first time. */
21 21