Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump LLVM to 7ce613fc77af092dd6e9db71ce3747b75bc5616e #6342

Merged
merged 1 commit into from
Oct 26, 2023
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
2 changes: 1 addition & 1 deletion include/circt/Dialect/FIRRTL/NLATable.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class NLATable {
/// Remove the NLA from the Module. This updates the module name to NLA
/// tracking.
void removeNLAfromModule(hw::HierPathOp nla, StringAttr mod) {
llvm::erase_value(nodeMap[mod], nla);
llvm::erase(nodeMap[mod], nla);
}

/// Remove all the nlas in the set `nlas` from the module. This updates the
Expand Down
8 changes: 0 additions & 8 deletions lib/Bindings/Python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/CombOps.td
SOURCES
dialects/comb.py
dialects/_comb_ops_ext.py
DIALECT_NAME comb)

declare_mlir_dialect_python_bindings(
Expand All @@ -80,7 +79,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/ESIOps.td
SOURCES
dialects/esi.py
dialects/_esi_ops_ext.py
DIALECT_NAME esi)

declare_mlir_dialect_python_bindings(
Expand All @@ -89,7 +87,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/HWOps.td
SOURCES
dialects/hw.py
dialects/_hw_ops_ext.py
DIALECT_NAME hw)

declare_mlir_dialect_python_bindings(
Expand All @@ -98,7 +95,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/MSFTOps.td
SOURCES
dialects/msft.py
dialects/_msft_ops_ext.py
DIALECT_NAME msft)

declare_mlir_dialect_python_bindings(
Expand All @@ -115,7 +111,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/SeqOps.td
SOURCES
dialects/seq.py
dialects/_seq_ops_ext.py
DIALECT_NAME seq)

declare_mlir_dialect_python_bindings(
Expand All @@ -124,7 +119,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/SVOps.td
SOURCES
dialects/sv.py
dialects/_sv_ops_ext.py
DIALECT_NAME sv)

declare_mlir_dialect_python_bindings(
Expand All @@ -133,7 +127,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/FSMOps.td
SOURCES
dialects/fsm.py
dialects/_fsm_ops_ext.py
DIALECT_NAME fsm)

declare_mlir_dialect_python_bindings(
Expand All @@ -142,7 +135,6 @@ declare_mlir_dialect_python_bindings(
TD_FILE dialects/HWArithOps.td
SOURCES
dialects/hwarith.py
dialects/_hwarith_ops_ext.py
DIALECT_NAME hwarith)

declare_mlir_dialect_python_bindings(
Expand Down
178 changes: 0 additions & 178 deletions lib/Bindings/Python/dialects/_comb_ops_ext.py

This file was deleted.

44 changes: 0 additions & 44 deletions lib/Bindings/Python/dialects/_esi_ops_ext.py

This file was deleted.

Loading