1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-25 02:41:45 +02: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:
Tommi Rantala 2012-08-31 11:50:58 +03:00
parent 1c1dbbe296
commit f93e1e93be

View file

@ -431,7 +431,7 @@ do { \
case DW_OP_drop:
Debug (15, "OP_drop\n");
pop ();
(void) pop ();
break;
case DW_OP_pick: