summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Remarks/RemarkFormat.cpp
diff options
context:
space:
mode:
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-31 00:01:34 +0000
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-07-31 00:01:34 +0000
commitd8e7967a22b600e059fef140083950bc514a4c43 (patch)
tree7a7f6e52b19eb85b8edeb4485039824582559c1d /llvm/lib/Remarks/RemarkFormat.cpp
parent9cf980d4a7ac7bda6f05807dd1e0456b8b2906ff (diff)
downloadbcm5719-llvm-d8e7967a22b600e059fef140083950bc514a4c43.tar.gz
bcm5719-llvm-d8e7967a22b600e059fef140083950bc514a4c43.zip
Revert "[Remarks] Add an LLVM-bitstream-based remark serializer"
This reverts commit r367364. Breaks some bots: http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-gn/builds/3161/steps/annotate/logs/stdio llvm-svn: 367370
Diffstat (limited to 'llvm/lib/Remarks/RemarkFormat.cpp')
-rw-r--r--llvm/lib/Remarks/RemarkFormat.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Remarks/RemarkFormat.cpp b/llvm/lib/Remarks/RemarkFormat.cpp
index f2d0331ec6a..8dcf3e19345 100644
--- a/llvm/lib/Remarks/RemarkFormat.cpp
+++ b/llvm/lib/Remarks/RemarkFormat.cpp
@@ -19,8 +19,7 @@ using namespace llvm::remarks;
Expected<Format> llvm::remarks::parseFormat(StringRef FormatStr) {
auto Result = StringSwitch<Format>(FormatStr)
.Cases("", "yaml", Format::YAML)
- .Case("yaml-strtab", Format::YAMLStrTab)
- .Case("bitstream", Format::Bitstream)
+ .Cases("", "yaml-strtab", Format::YAMLStrTab)
.Default(Format::Unknown);
if (Result == Format::Unknown)
OpenPOWER on IntegriCloud