test_fp_sharing: fix uninitialized variable
Coverity complains about this (harmless) issue, so simple fix. Change-Id: Ibac952157cb0541dbd150d681515280091409864 Coverity-ID: 152051 Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
This commit is contained in:
parent
ee387f0b6e
commit
03940d4c6a
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ void load_store_low(void)
|
|||
unsigned char *store_ptr = (unsigned char *)&float_reg_set_store;
|
||||
unsigned char *load_ptr = (unsigned char *)&float_reg_set_load;
|
||||
|
||||
volatile char volatile_stack_var;
|
||||
volatile char volatile_stack_var = 0;
|
||||
|
||||
PRINT_DATA("Floating point sharing tests started\n");
|
||||
PRINT_LINE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue