Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ OPENROAD_COPTS = [
"-Wformat-security",
"-Wno-sign-compare",
"-Wno-unused-parameter",
"-Wmismatched-tags",
"-fopenmp",
]

Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ add_compile_options(
-ffp-contract=off
# Apple clang 14.0.0 deprecates sprintf, which generates 900 warnings.
$<$<CXX_COMPILER_ID:AppleClang>:-Wno-deprecated-declarations>
$<$<CXX_COMPILER_ID:AppleClang>:-Wmismatched-tags>
$<$<BOOL:${ASAN}>:-fsanitize=address>
$<$<BOOL:${ASAN}>:-fno-omit-frame-pointer>
$<$<BOOL:${ASAN}>:-g>
Expand Down
10 changes: 5 additions & 5 deletions src/odb/include/odb/3dblox.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@ class Sta;
}
namespace odb {
class dbDatabase;
class ChipletDef;
class ChipletRegion;
class dbChip;
class ChipletInst;
class Connection;
class DesignDef;
class dbChipRegionInst;
class dbChipInst;
class dbChipRegion;
Expand All @@ -31,6 +26,11 @@ class dbInst;
class dbTech;
class dbLib;

struct ChipletDef;
struct ChipletRegion;
struct ChipletInst;
struct Connection;
struct DesignDef;
struct BumpMapEntry;

class ThreeDBlox
Expand Down
2 changes: 1 addition & 1 deletion src/par/include/par/PartitionMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct MasterInfo

class Cluster;
using SharedClusterVector = std::vector<std::shared_ptr<Cluster>>;
class ModuleMgr;
struct ModuleMgr;
class TritonPart;

struct CompareInstancePtr
Expand Down