Skip to content

Commit

Permalink
Make source file naming consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
sgizler committed Sep 24, 2024
1 parent b81fe62 commit b42c408
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FetchContent_Declare(
)
FetchContent_MakeAvailable(slang)

add_executable(sv-bugpoint source/sv-bugpoint.cpp source/utils.cpp source/PairRemovers.cpp source/BodyRemover.cpp
add_executable(sv-bugpoint source/SvBugpoint.cpp source/Utils.cpp source/PairRemovers.cpp source/BodyRemover.cpp
source/BodyPartsRemover.cpp source/DeclRemover.cpp source/InstantationRemover.cpp source/ModportRemover.cpp source/ContAssignRemover.cpp source/ParamAssignRemover.cpp
source/StatementsRemover.cpp source/MemberRemover.cpp source/ImportsRemover.cpp)

Expand Down
2 changes: 1 addition & 1 deletion source/OneTimeRemover.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <slang/syntax/SyntaxVisitor.h>
#include <iosfwd>
#include "utils.hpp"
#include "Utils.hpp"

#define DERIVED static_cast<TDerived*>(this)

Expand Down
2 changes: 1 addition & 1 deletion source/PairRemovers.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <slang/syntax/SyntaxVisitor.h>
#include "utils.hpp"
#include "Utils.hpp"

class PairRemover : public SyntaxRewriter<PairRemover> {
// each tranform yields removal of pair of nodes (based on locations in suplied pairs list)
Expand Down
2 changes: 1 addition & 1 deletion source/sv-bugpoint.cpp → source/SvBugpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <iostream>
#include "OneTimeRemoversFwd.hpp"
#include "PairRemovers.hpp"
#include "utils.hpp"
#include "Utils.hpp"

using namespace slang::syntax;
using namespace slang::ast;
Expand Down
2 changes: 1 addition & 1 deletion source/utils.cpp → source/Utils.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "utils.hpp"
#include "Utils.hpp"
#include <slang/ast/ASTVisitor.h>
#include <slang/syntax/SyntaxPrinter.h>
#include <slang/syntax/SyntaxVisitor.h>
Expand Down
File renamed without changes.

0 comments on commit b42c408

Please sign in to comment.