このページを編集する際は,編集に関する方針に従ってください.[]
概要[]
実装[]
31 #ifdef USE_MAPPED_LOCATION
~
47 typedef source_location location_t; /* deprecated typedef */
~
50 #else /* ! USE_MAPPED_LOCATION */
51
52 struct location_s GTY(())
53 {
54 /* The name of the source file involved. */
55 const char *file;
56
57 /* The line-location in the source file. */
58 int line;
59 };
60
&color(Silver){61 typedef struct location_s expanded_location;};
62 typedef struct location_s location_t;
~
69 #endif /* ! USE_MAPPED_LOCATION */