diff options
author | Kazu Hirata <kazu@google.com> | 2023-06-24 07:33:52 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2023-06-24 07:33:52 -0700 |
commit | 385329892ae75bff967bbff4c4f8fe8aa147afab (patch) | |
tree | 741cd511719e82c3741ecdad473f048d46d5afd8 | |
parent | 6b31e63bc31b85a2969b69da8c36ff0526e0d8b1 (diff) | |
download | llvm-385329892ae75bff967bbff4c4f8fe8aa147afab.zip llvm-385329892ae75bff967bbff4c4f8fe8aa147afab.tar.gz llvm-385329892ae75bff967bbff4c4f8fe8aa147afab.tar.bz2 |
[CodeGen] Remove unused forward declarations Instruction and Type
The last uses were removed by:
commit 79b3f0823e562fc652c3272b2ccfb99174445fa6
Author: Tim Northover <tnorthover@apple.com>
Date: Tue Feb 7 11:28:00 2023 +0000
-rw-r--r-- | llvm/include/llvm/CodeGen/StackProtector.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/StackProtector.h b/llvm/include/llvm/CodeGen/StackProtector.h index b52a937..70a3abf 100644 --- a/llvm/include/llvm/CodeGen/StackProtector.h +++ b/llvm/include/llvm/CodeGen/StackProtector.h @@ -27,11 +27,9 @@ namespace llvm { class BasicBlock; class Function; -class Instruction; class Module; class TargetLoweringBase; class TargetMachine; -class Type; class StackProtector : public FunctionPass { private: |