From 434c3c3ef3ae751b0a9f2d5934c2d2e986e65e81 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 17 Jan 2022 16:22:07 -0500 Subject: [PATCH] Removed the deprecated "fl" attribute in XML output; use "loc" attribute instead. --- Changes | 1 + docs/guide/deprecations.rst | 4 - docs/xml.rst | 3 - src/V3EmitXml.cpp | 9 +- src/V3FileLine.h | 1 - test_regress/t/t_clk_concat.pl | 6 +- test_regress/t/t_clk_concat_vlt.pl | 8 +- test_regress/t/t_dedupe_clk_gate.pl | 2 +- test_regress/t/t_dpi_var.pl | 8 +- test_regress/t/t_dpi_var_vlt.pl | 8 +- test_regress/t/t_func_dotted_inl0.pl | 8 +- test_regress/t/t_func_dotted_inl0_vlt.pl | 8 +- test_regress/t/t_func_dotted_inl2.pl | 4 +- test_regress/t/t_func_dotted_inl2_vlt.pl | 4 +- test_regress/t/t_inst_tree_inl0_pub0.pl | 12 +- test_regress/t/t_inst_tree_inl1_pub0.pl | 6 +- test_regress/t/t_inst_tree_inl1_pub1.pl | 6 +- test_regress/t/t_trace_public_sig_vlt.pl | 2 +- test_regress/t/t_unopt_combo_isolate.pl | 10 +- test_regress/t/t_unopt_combo_isolate_vlt.pl | 10 +- test_regress/t/t_var_port_xml.out | 128 +- test_regress/t/t_xml_debugcheck.out | 1886 +++++++++---------- test_regress/t/t_xml_first.out | 96 +- test_regress/t/t_xml_flat.out | 154 +- test_regress/t/t_xml_flat_no_inline_mod.out | 36 +- test_regress/t/t_xml_flat_pub_mod.out | 36 +- test_regress/t/t_xml_flat_vlvbound.out | 284 +-- test_regress/t/t_xml_output.out | 10 +- test_regress/t/t_xml_tag.out | 98 +- 29 files changed, 1420 insertions(+), 1428 deletions(-) diff --git a/Changes b/Changes index 2af61c435..9dd89e277 100644 --- a/Changes +++ b/Changes @@ -14,6 +14,7 @@ Verilator 4.219 devel **Minor:** * Removed the deprecated lint_off flag -msg; use -rule instead. +* Removed the deprecated "fl" attribute in XML output; use "loc" attribute instead. Verilator 4.218 2022-01-17 diff --git a/docs/guide/deprecations.rst b/docs/guide/deprecations.rst index a012241f4..71db142ee 100644 --- a/docs/guide/deprecations.rst +++ b/docs/guide/deprecations.rst @@ -16,10 +16,6 @@ Verilated_heavy.h "verilated.h". Verilated_heavy.h is planned for removal no sooner than July 2022. -XML locations - The XML "fl" attribute has been replaced with the "loc" attribute. "fl" - is planned for removal no sooner than January 2021. - Option `--cdc` The experimental `--cdc` option is believed to be generally unused and is planned for removeal no sooner than January 2023. diff --git a/docs/xml.rst b/docs/xml.rst index 725ada846..9a0656680 100644 --- a/docs/xml.rst +++ b/docs/xml.rst @@ -46,9 +46,6 @@ The XML document consists of 4 sections within the top level hierarchy. Each instance is represented with the ```` element with the following attributes: - - ``fl`` (deprecated): The file id and line number where the module - was instanced. Use ``loc`` instead. - - ``loc``: The file id, first line number, last line number, first column number and last column number of the identifier where the module was instanced, separated by commas. diff --git a/src/V3EmitXml.cpp b/src/V3EmitXml.cpp index e5d23f7f8..d77a959ad 100644 --- a/src/V3EmitXml.cpp +++ b/src/V3EmitXml.cpp @@ -61,7 +61,7 @@ class EmitXmlFileVisitor final : public VNVisitor { void outputTag(AstNode* nodep, const string& tagin) { string tag = tagin; if (tag == "") tag = VString::downcase(nodep->typeName()); - puts("<" + tag + " " + nodep->fileline()->xml()); + puts("<" + tag); puts(" " + nodep->fileline()->xmlDetailedLocation()); if (VN_IS(nodep, NodeDType)) { puts(" id="); @@ -386,8 +386,7 @@ private: if (nodep->level() >= 0 && nodep->level() <= 2) { // ==2 because we don't add wrapper when in XML mode m_os << "\n"; - m_os << "fileline()->xml() << " " - << nodep->fileline()->xmlDetailedLocation() // + m_os << "fileline()->xmlDetailedLocation() // << " name=\"" << nodep->prettyName() << "\"" << " submodname=\"" << nodep->prettyName() << "\"" << " hier=\"" << nodep->prettyName() << "\""; @@ -405,8 +404,8 @@ private: virtual void visit(AstCell* nodep) override { if (nodep->modp()->dead()) return; if (!m_hasChildren) m_os << ">\n"; - m_os << "fileline()->xml() << " " - << nodep->fileline()->xmlDetailedLocation() << " name=\"" << nodep->name() << "\"" + m_os << "fileline()->xmlDetailedLocation() << " name=\"" << nodep->name() + << "\"" << " submodname=\"" << nodep->modName() << "\"" << " hier=\"" << m_hier + nodep->name() << "\""; const std::string hier = m_hier; diff --git a/src/V3FileLine.h b/src/V3FileLine.h index c61167982..dbc437588 100644 --- a/src/V3FileLine.h +++ b/src/V3FileLine.h @@ -200,7 +200,6 @@ public: string filebasenameNoExt() const; string firstColumnLetters() const; string profileFuncname() const; - string xml() const { return "fl=\"" + filenameLetters() + cvtToStr(lastLineno()) + "\""; } string xmlDetailedLocation() const; string lineDirectiveStrg(int enterExit) const; diff --git a/test_regress/t/t_clk_concat.pl b/test_regress/t/t_clk_concat.pl index cebae1cb9..6506f7873 100755 --- a/test_regress/t/t_clk_concat.pl +++ b/test_regress/t/t_clk_concat.pl @@ -17,9 +17,9 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_clk_concat_vlt.pl b/test_regress/t/t_clk_concat_vlt.pl index 9808ed638..aada588d7 100755 --- a/test_regress/t/t_clk_concat_vlt.pl +++ b/test_regress/t/t_clk_concat_vlt.pl @@ -18,10 +18,10 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_dedupe_clk_gate.pl b/test_regress/t/t_dedupe_clk_gate.pl index c4a09eb65..ccc0816ac 100755 --- a/test_regress/t/t_dedupe_clk_gate.pl +++ b/test_regress/t/t_dedupe_clk_gate.pl @@ -17,7 +17,7 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); file_grep($Self->{stats}, qr/Optimizations, Gate sigs deduped\s+(\d+)/i, 4); } diff --git a/test_regress/t/t_dpi_var.pl b/test_regress/t/t_dpi_var.pl index 7f3485f5a..f96ebbdda 100755 --- a/test_regress/t/t_dpi_var.pl +++ b/test_regress/t/t_dpi_var.pl @@ -18,10 +18,10 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_dpi_var_vlt.pl b/test_regress/t/t_dpi_var_vlt.pl index 476882c77..10c8d696f 100755 --- a/test_regress/t/t_dpi_var_vlt.pl +++ b/test_regress/t/t_dpi_var_vlt.pl @@ -20,10 +20,10 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_func_dotted_inl0.pl b/test_regress/t/t_func_dotted_inl0.pl index 000ae222d..f286aa790 100755 --- a/test_regress/t/t_func_dotted_inl0.pl +++ b/test_regress/t/t_func_dotted_inl0.pl @@ -18,10 +18,10 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_func_dotted_inl0_vlt.pl b/test_regress/t/t_func_dotted_inl0_vlt.pl index 321df222d..711fb0708 100755 --- a/test_regress/t/t_func_dotted_inl0_vlt.pl +++ b/test_regress/t/t_func_dotted_inl0_vlt.pl @@ -18,10 +18,10 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_func_dotted_inl2.pl b/test_regress/t/t_func_dotted_inl2.pl index 6f6d98c4c..2dede96b9 100755 --- a/test_regress/t/t_func_dotted_inl2.pl +++ b/test_regress/t/t_func_dotted_inl2.pl @@ -18,8 +18,8 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_func_dotted_inl2_vlt.pl b/test_regress/t/t_func_dotted_inl2_vlt.pl index 378a9e7ae..5e8ee23b4 100755 --- a/test_regress/t/t_func_dotted_inl2_vlt.pl +++ b/test_regress/t/t_func_dotted_inl2_vlt.pl @@ -18,8 +18,8 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_inst_tree_inl0_pub0.pl b/test_regress/t/t_inst_tree_inl0_pub0.pl index 6037619f7..8f0584454 100755 --- a/test_regress/t/t_inst_tree_inl0_pub0.pl +++ b/test_regress/t/t_inst_tree_inl0_pub0.pl @@ -18,12 +18,12 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_inst_tree_inl1_pub0.pl b/test_regress/t/t_inst_tree_inl1_pub0.pl index 9a8a6aa92..9e8e50970 100755 --- a/test_regress/t/t_inst_tree_inl1_pub0.pl +++ b/test_regress/t/t_inst_tree_inl1_pub0.pl @@ -18,9 +18,9 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_inst_tree_inl1_pub1.pl b/test_regress/t/t_inst_tree_inl1_pub1.pl index ed87d615c..2c8ff9ac9 100755 --- a/test_regress/t/t_inst_tree_inl1_pub1.pl +++ b/test_regress/t/t_inst_tree_inl1_pub1.pl @@ -19,9 +19,9 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_trace_public_sig_vlt.pl b/test_regress/t/t_trace_public_sig_vlt.pl index c29e1cdc2..2bf507248 100755 --- a/test_regress/t/t_trace_public_sig_vlt.pl +++ b/test_regress/t/t_trace_public_sig_vlt.pl @@ -22,7 +22,7 @@ compile( ); if ($Self->{vlt_all}) { - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_unopt_combo_isolate.pl b/test_regress/t/t_unopt_combo_isolate.pl index cd9c893bb..cbc33dab8 100755 --- a/test_regress/t/t_unopt_combo_isolate.pl +++ b/test_regress/t/t_unopt_combo_isolate.pl @@ -19,11 +19,11 @@ compile( if ($Self->{vlt_all}) { file_grep($Self->{stats}, qr/Optimizations, isolate_assignments blocks\s+5/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_unopt_combo_isolate_vlt.pl b/test_regress/t/t_unopt_combo_isolate_vlt.pl index a71d1a004..f8aa4fcc3 100755 --- a/test_regress/t/t_unopt_combo_isolate_vlt.pl +++ b/test_regress/t/t_unopt_combo_isolate_vlt.pl @@ -19,11 +19,11 @@ compile( if ($Self->{vlt_all}) { file_grep($Self->{stats}, qr/Optimizations, isolate_assignments blocks\s+5/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); - file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); + file_grep("$out_filename", qr/\/i); } execute( diff --git a/test_regress/t/t_var_port_xml.out b/test_regress/t/t_var_port_xml.out index 5ca861df1..abbbdb652 100644 --- a/test_regress/t/t_var_port_xml.out +++ b/test_regress/t/t_var_port_xml.out @@ -11,119 +11,119 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - + + + + + - - - - - + + + + + - - - - + + + + diff --git a/test_regress/t/t_xml_debugcheck.out b/test_regress/t/t_xml_debugcheck.out index e2b4221fe..7df0425da 100644 --- a/test_regress/t/t_xml_debugcheck.out +++ b/test_regress/t/t_xml_debugcheck.out @@ -11,171 +11,171 @@ - - + + - + - - - - - - - - + + + + + + + + - - - - - - - - - + + + + + + + + + - - - + + + - - - - + + + + - + - + - - - - + + + + - - - + + + - - - - + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - + - - - + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -183,18 +183,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -202,82 +202,82 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -285,18 +285,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -304,128 +304,128 @@ - + - - - + + + - - - - + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - + - - - + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -433,18 +433,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -452,82 +452,82 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -535,18 +535,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -554,128 +554,128 @@ - + - - - + + + - - - - + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - + - - - + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -683,18 +683,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -702,82 +702,82 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -785,18 +785,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -804,25 +804,25 @@ - + - - - + + + - - - - + + + + - - + + - + @@ -833,70 +833,70 @@ - - - + + + - - - + + + - - - - - - - + + + + + + + - - - + + + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -904,18 +904,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -923,22 +923,22 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -946,18 +946,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -965,26 +965,26 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -994,22 +994,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1019,26 +1019,26 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -1048,22 +1048,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1073,26 +1073,26 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -1102,22 +1102,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1127,82 +1127,82 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -1210,18 +1210,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -1229,22 +1229,22 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -1252,18 +1252,18 @@ - - - - - - - - - - - - + + + + + + + + + + + + @@ -1271,288 +1271,288 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - + - - - + + + - + - - - + + + - - - + + + - + - - - - + + + + - - - - - - - - - + + + + + + + + + - + - - - - - - - + + + + + + + - + - - - + + + - - - - + + + + - + - - - - + + + + - - - + + + - + - - - - - + + + + + - - - + + + - + - - - + + + - - - - + + + + - + - - - - - - - + + + + + + + - - + + - - - + + + - - + + - - + + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - - - - + + + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + - - + + - - - - - - - + + + + + + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + - - + + diff --git a/test_regress/t/t_xml_first.out b/test_regress/t/t_xml_first.out index 929ff89c1..51bf2a9aa 100644 --- a/test_regress/t/t_xml_first.out +++ b/test_regress/t/t_xml_first.out @@ -11,75 +11,75 @@ - - - + + + - - - - - - - - + + + + + + + + - - + + - - + + - - - + + + - - + + - - + + - - - + + + - - - - - + + + + + - - - - + + + + - - - + + + - - - - - - - + + + + + + + - - - - + + + + diff --git a/test_regress/t/t_xml_flat.out b/test_regress/t/t_xml_flat.out index ea35502fc..fac6779bb 100644 --- a/test_regress/t/t_xml_flat.out +++ b/test_regress/t/t_xml_flat.out @@ -11,104 +11,104 @@ - + - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - + + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - + + + + diff --git a/test_regress/t/t_xml_flat_no_inline_mod.out b/test_regress/t/t_xml_flat_no_inline_mod.out index e1d070bce..228c0e8f2 100644 --- a/test_regress/t/t_xml_flat_no_inline_mod.out +++ b/test_regress/t/t_xml_flat_no_inline_mod.out @@ -11,31 +11,31 @@ - + - - - - - - - - - - - - + + + + + + + + + + + + - - - + + + - - + + diff --git a/test_regress/t/t_xml_flat_pub_mod.out b/test_regress/t/t_xml_flat_pub_mod.out index 88b51b3ca..e659f2ba4 100644 --- a/test_regress/t/t_xml_flat_pub_mod.out +++ b/test_regress/t/t_xml_flat_pub_mod.out @@ -11,31 +11,31 @@ - + - - - - - - - - - - - - + + + + + + + + + + + + - - - + + + - - + + diff --git a/test_regress/t/t_xml_flat_vlvbound.out b/test_regress/t/t_xml_flat_vlvbound.out index 0ccd4afa3..214b2626a 100644 --- a/test_regress/t/t_xml_flat_vlvbound.out +++ b/test_regress/t/t_xml_flat_vlvbound.out @@ -11,205 +11,205 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - + + + - - - - - + + + + + - - - + + + - + - - - + + + - - - - - - - - - + + + + + + + + + - - + + - + - - - - - - + + + + + + - + - - - - + + + + - + - - - + + + - - - + + + - - - - - + + + + + - - - + + + - + - - - + + + - - - - - - - - - + + + + + + + + + - - + + - + - - - - - - + + + + + + - + - - - - + + + + - + - - - + + + - - - + + + - - - - - - - - + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test_regress/t/t_xml_output.out b/test_regress/t/t_xml_output.out index 645a7b61b..c2ca4faf4 100644 --- a/test_regress/t/t_xml_output.out +++ b/test_regress/t/t_xml_output.out @@ -11,14 +11,14 @@ - + - - + + - - + + diff --git a/test_regress/t/t_xml_tag.out b/test_regress/t/t_xml_tag.out index 9c4c044e7..71b99ee25 100644 --- a/test_regress/t/t_xml_tag.out +++ b/test_regress/t/t_xml_tag.out @@ -11,72 +11,72 @@ - - + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + + - - - - - + + + + + - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - +