dl06/dl06-o1.c: Remove set, not used warning

This commit is contained in:
Joel Sherrill
2018-08-15 09:48:28 -05:00
parent adbd7e747e
commit da8b12bcb7

View File

@@ -34,7 +34,6 @@ int rtems_main (int argc, const char* argv[]);
int rtems_main (int argc, const char* argv[])
{
func1_t f1;
int arg;
double d;
unsigned short s[7] = { 12, 34, 56, 78, 90, 13, 57 };
@@ -47,7 +46,11 @@ int rtems_main (int argc, const char* argv[])
f1 (s);
d = dl_o2_func2 (7.1, 33.0);
(void) d;
d = dl_o2_func3 (0.778899);
(void) d;
return argc;
}