diff options
Diffstat (limited to 'gcc/cobol/genutil.h')
-rw-r--r-- | gcc/cobol/genutil.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cobol/genutil.h b/gcc/cobol/genutil.h index e252377..b2868f7 100644 --- a/gcc/cobol/genutil.h +++ b/gcc/cobol/genutil.h @@ -103,7 +103,11 @@ void get_binary_value( tree value, tree hilo = NULL); tree get_data_address( cbl_field_t *field, tree offset); + +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpedantic" __int128 get_power_of_ten(int n); +#pragma GCC diagnostic pop void scale_by_power_of_ten_N(tree value, int N, bool check_for_fractional = false); |