[PATCH] D66600: Add encode and decode methods to InlineInfo and document encoding format to the GSYM file format

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 3 09:29:00 PDT 2019


MaskRay added inline comments.


================
Comment at: lib/DebugInfo/GSYM/InlineInfo.cpp:149
+      }
+      llvm::Error Error = Child.encode(O, ChildBaseAddr);
+      if (Error)
----------------
```
if (llvm::Error E = ...)
  return E
```

(Avoid `Error` which is also a type name)


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

https://reviews.llvm.org/D66600





More information about the llvm-commits mailing list