[clang] [clang] Improve diagnostics for constraints of inline asm (NFC) (PR #96363)

via cfe-commits cfe-commits at lists.llvm.org
Mon Jun 24 06:28:02 PDT 2024


================
@@ -2626,14 +2629,20 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
   SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
   SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
 
+  const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl);
----------------
Sirraide wrote:

> Where do you get dyn_cast_or_null is deprecated?

Mainly from here (as well as other places in `Casting.h`):
https://github.com/llvm/llvm-project/blob/5cd0ba30f53d11835dbfd05ad4071d397387fb04/llvm/include/llvm/Support/Casting.h#L756-L769

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


More information about the cfe-commits mailing list