CIF writer: only layer names should be forced to upper case. Cell names don't need this.

This commit is contained in:
Matthias Koefferlein 2019-11-30 22:53:29 +01:00
parent 9eb09c3a5d
commit c49bc17e6a
2 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ CIFWriter::write (db::Layout &layout, tl::OutputStream &stream, const db::SaveLa
double sf = 1.0;
*this << "DS " << cell_index << " " << tl_scale_denom << " " << tl_scale_divider << ";" << m_endl;
*this << "9 " << tl::to_word_or_quoted_string (tl::to_upper_case (layout.cell_name (*cell))) << ";" << m_endl;
*this << "9 " << tl::to_word_or_quoted_string (layout.cell_name (*cell)) << ";" << m_endl;
// instances
for (db::Cell::const_iterator inst = cref.begin (); ! inst.at_end (); ++inst) {

Binary file not shown.