[llvm-branch-commits] [clang] [clang] Implement function pointer signing and authenticated function calls (PR #93906)
Daniil Kovalev via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Jun 7 01:42:11 PDT 2024
================
@@ -14,10 +14,146 @@
#ifndef LLVM_CLANG_BASIC_POINTERAUTHOPTIONS_H
#define LLVM_CLANG_BASIC_POINTERAUTHOPTIONS_H
+#include "clang/Basic/LLVM.h"
+#include "clang/Basic/LangOptions.h"
+#include "llvm/Support/ErrorHandling.h"
+#include "llvm/Target/TargetOptions.h"
+#include <map>
+#include <memory>
+#include <string>
+#include <vector>
----------------
kovdan01 wrote:
There are several unneeded includes (vector, map, ...). If I'm not mistaken, only clang/Basic/LangOptions.h and llvm/Support/ErrorHandling.h are required.
https://github.com/llvm/llvm-project/pull/93906
More information about the llvm-branch-commits
mailing list