[PATCH] D79743: [clang][asm goto][slh] Warn if asm goto + SLH

Jennifer Yu via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue May 19 17:39:07 PDT 2020


jyu2 accepted this revision.
jyu2 added a comment.
This revision is now accepted and ready to land.

LGTM.  Please changed format for td file.



================
Comment at: clang/include/clang/Basic/DiagnosticCommonKinds.td:247
+
+  def warn_slh_does_not_support_asm_goto : Warning<
+    "Speculative load hardening does not protect functions with asm goto">, InGroup<DiagGroup<"slh-asm-goto">>;
----------------
Just need run clang-format:
def warn_slh_does_not_support_asm_goto
      : Warning<"Speculative load hardening does not protect functions with "
                "asm goto">,
        InGroup<DiagGroup<"slh-asm-goto">>;



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D79743





More information about the cfe-commits mailing list