Undo volatile testcase

This commit is contained in:
Ganesh Viswanathan 2019-05-07 00:43:36 -05:00
commit 69cfce561a
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ int test_call_param7(union UNION1 param1) {
return param1.field1;
}
float test_call_param8(int volatile *param1) {
float test_call_param8(int *param1) {
*param1 = 5 * *param1;
return 1.0 * *param1;

View file

@ -109,7 +109,7 @@ ENUM2 test_call_param4(enum ENUM param1);
union UNION1 test_call_param5(float param1);
unsigned char test_call_param6(UNION2 param1);
int test_call_param7(union UNION1 param1);
float test_call_param8(int volatile *param1);
float test_call_param8(int *param1);
void *test_call9();
void **test_call10(int **param1);