tests/(floating_point|scale_clip)_test.def : Quote hex literals.

Versions of autogen before 5.18.1 accepted bare hexadecimal literals
but later versions need those hex literals quoted. See:

    https://sourceforge.net/p/autogen/bugs/162/
This commit is contained in:
Erik de Castro Lopo 2014-06-30 18:32:10 +10:00
parent 9b09b70042
commit 852d6e612a
2 changed files with 4 additions and 4 deletions

View File

@ -22,11 +22,11 @@ float_type = {
int_type = {
int_name = short ;
int_max = 0x7FFF ;
int_max = "0x7FFF" ;
} ;
int_type = {
int_name = int ;
int_max = 0x7FFFFFFF ;
int_max = "0x7FFFFFFF" ;
} ;

View File

@ -19,13 +19,13 @@ float_type = {
int_type = {
int_type_name = "short" ;
int_short_name = "s" ;
int_max_value = 0x7FFFF ;
int_max_value = "0x7FFFF" ;
} ;
int_type = {
int_type_name = "int" ;
int_short_name = "i" ;
int_max_value = 0x7FFFFFFF ;
int_max_value = "0x7FFFFFFF" ;
} ;