mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
20001122-1.c: Fix GCC 4.6 build warning
Fix: 20001122-1.c: In function 'fpu_post_test_math1': 20001122-1.c:37:22: warning: variable 'p' set but not used [-Wunused-but-set-variable] Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
4a1272662a
commit
944416e07c
1 changed files with 1 additions and 2 deletions
|
|
@ -34,12 +34,11 @@ GNU_FPOST_ATTR
|
|||
|
||||
int fpu_post_test_math1 (void)
|
||||
{
|
||||
volatile double a, *p;
|
||||
volatile double a;
|
||||
double c, d;
|
||||
volatile double b;
|
||||
|
||||
d = 1.0;
|
||||
p = &b;
|
||||
|
||||
do
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue