summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/libtests/dl06/dl06-o1.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuites/libtests/dl06/dl06-o1.c b/testsuites/libtests/dl06/dl06-o1.c
index d3c882ebfb..32e9a4acd9 100644
--- a/testsuites/libtests/dl06/dl06-o1.c
+++ b/testsuites/libtests/dl06/dl06-o1.c
@@ -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;
}