diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-05-19 21:41:28 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-05-19 21:41:28 +0000 |
commit | de1970fe668a345b4dd033a82581b2cf50b0cfe4 (patch) | |
tree | 3fb0d5e4d4e8e0a51f80c6246ff11c8f84b8da75 /llvm/lib/Support | |
parent | bf178d3eb76e4552ce217d9830536fc2f6f53fcb (diff) | |
download | bcm5719-llvm-de1970fe668a345b4dd033a82581b2cf50b0cfe4.tar.gz bcm5719-llvm-de1970fe668a345b4dd033a82581b2cf50b0cfe4.zip |
Revert r237708 (MIR serialization) - incremental buildbots became unstable.
The incremental buildbots entered a pass-fail cycle where during the fail
cycle one of the tests from this commit fails for an unknown reason. I
have reverted this commit and will investigate the cause of this problem.
llvm-svn: 237730
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/YAMLTraits.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Support/YAMLTraits.cpp b/llvm/lib/Support/YAMLTraits.cpp index 0d47f37edbd..90f34f6e232 100644 --- a/llvm/lib/Support/YAMLTraits.cpp +++ b/llvm/lib/Support/YAMLTraits.cpp @@ -97,10 +97,6 @@ bool Input::nextDocument() { return ++DocIterator != Strm->end(); } -const Node *Input::getCurrentNode() const { - return CurrentNode ? CurrentNode->_node : nullptr; -} - bool Input::mapTag(StringRef Tag, bool Default) { std::string foundTag = CurrentNode->_node->getVerbatimTag(); if (foundTag.empty()) { |