Skip to content

Commit

Permalink
verilog read/write to public includes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcherry56 committed Apr 5, 2020
1 parent e002e29 commit ec85689
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion search/Sta.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "SdcNetwork.hh"
#include "MakeConcreteNetwork.hh"
#include "PortDirection.hh"
#include "verilog/VerilogReader.hh"
#include "VerilogReader.hh"
#include "Graph.hh"
#include "GraphCmp.hh"
#include "Sdc.hh"
Expand Down
2 changes: 0 additions & 2 deletions util/Machine.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
#pragma once

// This header contains global os/port specific definitions.
// It should be included in every source file after any system include
// files and before any STA include files.

// Pragma placeholder for non-gcc compilers.
#ifndef __GNUC__
Expand Down
4 changes: 2 additions & 2 deletions verilog/Verilog.i
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

#include "verilog/VerilogReader.hh"
#include "verilog/VerilogWriter.hh"
#include "VerilogReader.hh"
#include "VerilogWriter.hh"
#include "Sta.hh"

using sta::Sta;
Expand Down
2 changes: 1 addition & 1 deletion verilog/VerilogParse.yy
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include "PortDirection.hh"
#include "verilog/VerilogReaderPvt.hh"
#include "verilog/VerilogReader.hh"
#include "VerilogReader.hh"

int VerilogLex_lex();
#define VerilogParse_lex VerilogLex_lex
Expand Down
2 changes: 1 addition & 1 deletion verilog/VerilogReader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

#include "verilog/VerilogReader.hh"
#include "VerilogReader.hh"

#include <stdlib.h>

Expand Down
2 changes: 1 addition & 1 deletion verilog/VerilogWriter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

#include "verilog/VerilogWriter.hh"
#include "VerilogWriter.hh"

#include <stdlib.h>

Expand Down

0 comments on commit ec85689

Please sign in to comment.