diff options
author | Philip Reames <listmail@philipreames.com> | 2018-11-12 20:15:34 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2018-11-12 20:15:34 +0000 |
commit | c75a0c3f69d1dae4da99d048ddc26aa324421e92 (patch) | |
tree | 28fcea1eed058b44ae9fc427e122a9a64eff4965 /llvm/lib/CodeGen/GCMetadata.cpp | |
parent | cc75e77df5a3b6f0bc944408ff481de18b793f22 (diff) | |
download | llvm-c75a0c3f69d1dae4da99d048ddc26aa324421e92.zip llvm-c75a0c3f69d1dae4da99d048ddc26aa324421e92.tar.gz llvm-c75a0c3f69d1dae4da99d048ddc26aa324421e92.tar.bz2 |
[GC] Remove so called PreCall safepoints
Remove another bit of unused configuration potential from GCStrategy. It's not entirely clear what the intention here was, but from the docs, it sounds like this may have been subsumed by patchable call support.
Note: This change is deliberately small to make it clear that while implemented, there's nothing using the option. A following NFC will do most of the simplifications.
llvm-svn: 346701
Diffstat (limited to 'llvm/lib/CodeGen/GCMetadata.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GCMetadata.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/GCMetadata.cpp b/llvm/lib/CodeGen/GCMetadata.cpp index fe3d296..4bf5335 100644 --- a/llvm/lib/CodeGen/GCMetadata.cpp +++ b/llvm/lib/CodeGen/GCMetadata.cpp @@ -105,8 +105,6 @@ void Printer::getAnalysisUsage(AnalysisUsage &AU) const { static const char *DescKind(GC::PointKind Kind) { switch (Kind) { - case GC::PreCall: - return "pre-call"; case GC::PostCall: return "post-call"; } |