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

LLVM bump to include upstream verifier performance fix. #7496

Merged
merged 4 commits into from
Aug 9, 2024
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
4 changes: 2 additions & 2 deletions include/circt/Dialect/HW/HWTypes.td
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def HWNonInOutType : DialectType<HWDialect,

def InOutType : DialectType<HWDialect,
CPred<"::circt::hw::type_isa<circt::hw::InOutType>($_self)">,
"InOutType", "InOutType">;
"InOutType", "::circt::hw::InOutType">;

class InOutTypeOf<list<Type> allowedTypes>
: ContainerType<AnyTypeOf<allowedTypes>, CPred<"::circt::hw::type_isa<::circt::hw::InOutType>($_self)">,
Expand All @@ -62,7 +62,7 @@ def StructType : DialectType<HWDialect,
// A handle to refer to circt::hw::UnionType in ODS.
def UnionType : DialectType<HWDialect,
CPred<"::circt::hw::type_isa<circt::hw::UnionType>($_self)">,
"a UnionType", "::circt::hw::TypeAliasOr<hw::UnionType>">;
"a UnionType", "::circt::hw::TypeAliasOr<::circt::hw::UnionType>">;

// A handle to refer to circt::hw::EnumType in ODS.
def EnumType : DialectType<HWDialect,
Expand Down
4 changes: 3 additions & 1 deletion lib/Conversion/ImportVerilog/Expressions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ struct RvalueExprVisitor {
isInc ? builder.create<moore::AddOp>(loc, preValue, one).getResult()
: builder.create<moore::SubOp>(loc, preValue, one).getResult();
builder.create<moore::BlockingAssignOp>(loc, arg, postValue);
return isPost ? preValue : postValue;
if (isPost)
return preValue;
return postValue;
}

// Handle unary operators.
Expand Down
2 changes: 1 addition & 1 deletion llvm
Submodule llvm updated 2540 files
Loading