diff options
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index a9cd9c2..a978b17 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -392,6 +392,7 @@ const struct language_defn c_language_defn = type_check_off, case_sensitive_on, array_row_major, + macro_expansion_c, &exp_descriptor_standard, c_preprocess_and_parse, c_error, @@ -509,6 +510,7 @@ const struct language_defn cplus_language_defn = type_check_off, case_sensitive_on, array_row_major, + macro_expansion_c, &exp_descriptor_standard, c_preprocess_and_parse, c_error, @@ -545,6 +547,7 @@ const struct language_defn asm_language_defn = type_check_off, case_sensitive_on, array_row_major, + macro_expansion_c, &exp_descriptor_standard, c_preprocess_and_parse, c_error, @@ -586,6 +589,7 @@ const struct language_defn minimal_language_defn = type_check_off, case_sensitive_on, array_row_major, + macro_expansion_c, &exp_descriptor_standard, c_preprocess_and_parse, c_error, |