[clang] [Clang][Driver] Add new flags to control machine instruction verification (PR #70282)

Matheus Izvekov via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 25 21:26:49 PDT 2023


================
@@ -1926,6 +1926,12 @@ def fverify_intermediate_code : Flag<["-"], "fverify-intermediate-code">,
 def fno_verify_intermediate_code : Flag<["-"], "fno-verify-intermediate-code">,
   Group<f_clang_Group>, Visibility<[ClangOption, CLOption, DXCOption]>,
   HelpText<"Disable verification of LLVM IR">, Flags<[NoXarchOption]>;
+def fverify_machine_code : Flag<["-"], "fverify-machine-code">,
+  Group<f_clang_Group>, Visibility<[ClangOption, CLOption, DXCOption]>,
+  HelpText<"Enable verification of generated machine code">, Flags<[NoXarchOption]>;
----------------
mizvekov wrote:

Done. I also fixed in a separate commit the related flag above it, which I added recently.

https://github.com/llvm/llvm-project/pull/70282


More information about the cfe-commits mailing list