[PATCH] D67757: [yaml2obj/obj2yaml] - Add support for .stack_sizes sections.

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 21 08:14:43 PDT 2019


MaskRay added inline comments.


================
Comment at: lib/ObjectYAML/ELFYAML.cpp:1182
+    if (!SS->Content && !SS->Entries)
+      return "for .stack_sizes either Content or Entries tag must be specified";
+    return {};
----------------
Alternatives:

.stack_sizes: either Content or Entries tag must be specified

.stack_sizes: Content and Entries cannot be used together


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

https://reviews.llvm.org/D67757





More information about the llvm-commits mailing list