diff options
author | Vitaly Buka <vitalybuka@google.com> | 2020-06-15 02:26:28 -0700 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2020-06-17 01:07:47 -0700 |
commit | 6754a0e2edde23eb7a58601fbf0c33a856dc837a (patch) | |
tree | fefb7417952f4965f34694ae72ac41b11e60236c /llvm/lib/CodeGen/SafeStack.cpp | |
parent | d3f7448e3ca5535fbaaa728a82e05649b2220bdd (diff) | |
download | llvm-6754a0e2edde23eb7a58601fbf0c33a856dc837a.zip llvm-6754a0e2edde23eb7a58601fbf0c33a856dc837a.tar.gz llvm-6754a0e2edde23eb7a58601fbf0c33a856dc837a.tar.bz2 |
[SafeStack,NFC] Move SafeStackColoring code
Summary:
This code is going to be used in StackSafety.
This patch is file move with minimal changes. Identifiers
will be fixed in the followup patch.
Reviewers: eugenis, pcc
Reviewed By: eugenis
Subscribers: mgorny, hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D81831
Diffstat (limited to 'llvm/lib/CodeGen/SafeStack.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SafeStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SafeStack.cpp b/llvm/lib/CodeGen/SafeStack.cpp index 63c4e94..a60a493 100644 --- a/llvm/lib/CodeGen/SafeStack.cpp +++ b/llvm/lib/CodeGen/SafeStack.cpp @@ -14,7 +14,6 @@ // //===----------------------------------------------------------------------===// -#include "SafeStackColoring.h" #include "SafeStackLayout.h" #include "llvm/ADT/APInt.h" #include "llvm/ADT/ArrayRef.h" @@ -28,6 +27,7 @@ #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Analysis/ScalarEvolutionExpressions.h" +#include "llvm/Analysis/StackLifetime.h" #include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/CodeGen/TargetLowering.h" #include "llvm/CodeGen/TargetPassConfig.h" |