[PATCH] D68720: Support -fstack-clash-protection for x86
serge via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 10 09:53:17 PST 2020
serge-sans-paille marked 2 inline comments as done.
serge-sans-paille added inline comments.
================
Comment at: clang/lib/CodeGen/CGStmt.cpp:2254
+ CGM.getDiags().Report(S.getAsmLoc(),
+ diag::warn_fe_stack_clash_protection_inline_asm);
+ }
----------------
craig.topper wrote:
> serge-sans-paille wrote:
> > craig.topper wrote:
> > > Why is this in the frontend diagnostic list?
> > As far as I understand, that's the only place where line/col accurate diagnostics are emitted.
> I was really asking about why we have to use FrontendDiagnostic.h and DriverDiagnostic.h? Is that what we normally use for diagnostics in Codegen files? Seems like a possible layering issue for modules build
Oh, I understand now, let me have a look, your remark totally makes sense.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68720/new/
https://reviews.llvm.org/D68720
More information about the cfe-commits
mailing list