From c75a0c3f69d1dae4da99d048ddc26aa324421e92 Mon Sep 17 00:00:00 2001 From: Philip Reames Date: Mon, 12 Nov 2018 20:15:34 +0000 Subject: [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 --- llvm/lib/CodeGen/GCMetadata.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'llvm/lib/CodeGen/GCMetadata.cpp') 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"; } -- cgit v1.1