[PATCH] D74778: [Assembler] Allow assembling empty index with non-zero flags

Eugene Leviant via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 09:49:15 PST 2020


evgeny777 created this revision.
evgeny777 added a reviewer: tejohnson.
Herald added a subscriber: arphaman.
Herald added a project: LLVM.

https://reviews.llvm.org/D74778

Files:
  llvm/test/Assembler/summary-flags2.ll
  llvm/tools/llvm-as/llvm-as.cpp


Index: llvm/tools/llvm-as/llvm-as.cpp
===================================================================
--- llvm/tools/llvm-as/llvm-as.cpp
+++ llvm/tools/llvm-as/llvm-as.cpp
@@ -92,7 +92,7 @@
     const ModuleSummaryIndex *IndexToWrite = nullptr;
     // Don't attempt to write a summary index unless it contains any entries.
     // Otherwise we get an empty summary section.
-    if (Index && Index->begin() != Index->end())
+    if (Index && (Index->begin() != Index->end() || Index->getFlags()))
       IndexToWrite = Index;
     if (!IndexToWrite || (M && (!M->empty() || !M->global_empty())))
       // If we have a non-empty Module, then we write the Module plus
Index: llvm/test/Assembler/summary-flags2.ll
===================================================================
--- /dev/null
+++ llvm/test/Assembler/summary-flags2.ll
@@ -0,0 +1,8 @@
+; Check that we can assemble/disassemble empty index with non-trivial flags
+; RUN: llvm-as %s -o - | llvm-dis -o - | FileCheck %s
+
+; ModuleID = 'index.bc'
+source_filename = "index.bc"
+
+^0 = flags: 2
+; CHECK: ^0 = flags: 2


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74778.245192.patch
Type: text/x-patch
Size: 1087 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200218/a8d5e08c/attachment.bin>


More information about the llvm-commits mailing list