mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-25 16:47:38 +01:00
Avoid LLVM -Wunused-value warning in src/dwarf/Gexpr.c
src/dwarf/Gexpr.c:434:4: warning: expression result unused [-Wunused-value] pop (); ^~~~~~ src/dwarf/Gexpr.c:211:14: note: expanded from: stack[--tos]; \ ~~~~~ ~~~~~^
This commit is contained in:
parent
1c1dbbe296
commit
f93e1e93be
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ do { \
|
||||||
|
|
||||||
case DW_OP_drop:
|
case DW_OP_drop:
|
||||||
Debug (15, "OP_drop\n");
|
Debug (15, "OP_drop\n");
|
||||||
pop ();
|
(void) pop ();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DW_OP_pick:
|
case DW_OP_pick:
|
||||||
|
|
Loading…
Reference in a new issue