[PATCH] D149022: [LLD][COFF] Print object file name for unsupported directives

Alvin Wong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 23 09:19:10 PDT 2023


alvinhochun updated this revision to Diff 516176.
alvinhochun added a comment.

Run clang-format


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D149022

Files:
  lld/COFF/Driver.cpp
  lld/test/COFF/directives-unsupported.s


Index: lld/test/COFF/directives-unsupported.s
===================================================================
--- /dev/null
+++ lld/test/COFF/directives-unsupported.s
@@ -0,0 +1,15 @@
+# REQUIRES: x86
+
+# RUN: llvm-mc -triple=x86_64-windows %s -filetype=obj -o %t.obj
+
+# RUN: not lld-link -dll -out:%t.dll -entry:entry %t.obj -subsystem:console 2>&1 | FileCheck --ignore-case %s
+
+# CHECK: warning: ignoring unknown argument: -unknowndirectivename
+# CHECK: error: -unknowndirectivename is not allowed in .drectve ({{.*}}.obj)
+
+  .global entry
+  .text
+entry:
+  ret
+  .section .drectve
+  .ascii " -unknowndirectivename "
Index: lld/COFF/Driver.cpp
===================================================================
--- lld/COFF/Driver.cpp
+++ lld/COFF/Driver.cpp
@@ -447,7 +447,8 @@
     case OPT_throwingnew:
       break;
     default:
-      error(arg->getSpelling() + " is not allowed in .drectve");
+      error(arg->getSpelling() + " is not allowed in .drectve (" +
+            toString(file) + ")");
     }
   }
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149022.516176.patch
Type: text/x-patch
Size: 1038 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230423/d2c71902/attachment.bin>


More information about the llvm-commits mailing list