mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-09 02:43:42 +01:00
(bar): Fix missing initialization warned on by GCC v4.
(Logical change 1.290)
This commit is contained in:
parent
828d48662d
commit
9fa361ed37
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ int
|
||||||
bar (int v)
|
bar (int v)
|
||||||
{
|
{
|
||||||
extern long f (long);
|
extern long f (long);
|
||||||
int arr[1];
|
int arr[1] = { v };
|
||||||
uintptr_t r;
|
uintptr_t r;
|
||||||
|
|
||||||
/* This is a vain attempt to use up lots of registers to force
|
/* This is a vain attempt to use up lots of registers to force
|
||||||
|
|
Loading…
Reference in a new issue