Move the MMX subtarget feature out of the SSE set of features and into
[oota-llvm.git] / utils / yaml-bench / YAMLBench.cpp
index bd5aa152dffdd20aa762252a70afcb73445e7741..634622a710c80551f91f5ec11f8393101b25ca48 100644 (file)
@@ -96,6 +96,8 @@ static void dumpNode( yaml::Node *n
     SmallString<32> Storage;
     StringRef Val = sn->getValue(Storage);
     outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\"";
+  } else if (yaml::BlockScalarNode *BN = dyn_cast<yaml::BlockScalarNode>(n)) {
+    outs() << prettyTag(n) << " \"" << yaml::escape(BN->getValue()) << "\"";
   } else if (yaml::SequenceNode *sn = dyn_cast<yaml::SequenceNode>(n)) {
     outs() << prettyTag(n) << " [\n";
     ++Indent;