summaryrefslogtreecommitdiff
path: root/gcc/cpphash.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r--gcc/cpphash.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h
index 4eee9426a76..6e17226def9 100644
--- a/gcc/cpphash.h
+++ b/gcc/cpphash.h
@@ -243,11 +243,10 @@ struct _cpp_line_note
/* Location in the clean line the note refers to. */
const uchar *pos;
- /* Type of note. */
- enum { NOTE_ESC_NL = 0,
- NOTE_ESC_SPACE_NL,
- NOTE_TRIGRAPH,
- NOTE_NEWLINE } type;
+ /* Type of note. The 9 'from' trigraph characters represent those
+ trigraphs, '\\' an escaped newline, ' ' an escaped newline with
+ intervening space, and anything else is invalid. */
+ unsigned int type;
};
/* Represents the contents of a file cpplib has read in. */