[PATCH] D49676: [DWARF] support for .debug_addr (consumer)

Victor Leschuk via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 27 01:52:39 PDT 2018


vleschuk marked 14 inline comments as done.
vleschuk added inline comments.


================
Comment at: lib/DebugInfo/DWARF/DWARFDebugAddr.cpp:44
+    if (HeaderData.Length == 0xffffffffu)
+      return createStringError(errc::invalid_argument,
+          "DWARF64 is not supported in .debug_addr at offset 0x%" PRIx32 "\n",
----------------
jhenderson wrote:
> There is errc::not_supported, which I'd recommend for this.
There is only errc::function_not_supported. I used this one.


https://reviews.llvm.org/D49676





More information about the llvm-commits mailing list