[llvm] Minimal unwinding information (DWARF CFI) checker (PR #145633)
Paul Kirth via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 25 12:49:49 PDT 2025
================
@@ -0,0 +1,43 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// This file declares FunctionUnitUnwindInfoAnalyzer class.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_UNWINDINFOCHECKER_FUNCTIONUNITUNWINDINFOANALYZER_H
+#define LLVM_UNWINDINFOCHECKER_FUNCTIONUNITUNWINDINFOANALYZER_H
+
+#include "FunctionUnitAnalyzer.h"
+#include "UnwindInfoAnalysis.h"
+#include "llvm/ADT/ArrayRef.h"
+#include <cstdio>
----------------
ilovepi wrote:
```suggestion
```
I can't imagine why you'd need `cstdio`...
https://github.com/llvm/llvm-project/pull/145633
More information about the llvm-commits
mailing list