[PATCH] D79832: Initial commit for the elf x86 implementation for jitlink

Abhinav Gaba via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun May 24 23:57:34 PDT 2020


abhinavgaba added inline comments.


================
Comment at: llvm/lib/ExecutionEngine/JITLink/ELF_x86_64.cpp:100
+        Value = SymRef.getValue();
+        LLVM_DEBUG({
+          dbgs() << "  ";
----------------
`Binding` and `Value` are read only inside this `LLVM_DEBUG`, making them unread if debug messages are disabled.

  error: variable ‘Binding’ set but not used [-Werror=unused-but-set-variable]


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D79832/new/

https://reviews.llvm.org/D79832





More information about the llvm-commits mailing list