Skip to content
Open
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 compiler/src/intermediate_representation/translate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub struct OutBoundsCheck{
pub struct SymbolInfo {
access_instruction: InstructionPointer,
dimensions: Vec<Length>,
size: usize, // needed, in case it is a bus to dont have to compute it again
size: usize, // needed, in case it is a bus to don't have to compute it again
is_component: bool,
is_bus: bool,
bus_id: Option<usize>,
Expand Down
2 changes: 1 addition & 1 deletion constraint_generation/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2665,7 +2665,7 @@ fn execute_conditional_statement(
runtime.block_type = BlockType::Unknown;
// TODO: here instead of executing both branches what we do is to store the values
// that we assign in each one of the branches and assign later: if we assign in both
// of them a signal we return an error. If we assign in just one then we dont return error
// of them a signal we return an error. If we assign in just one then we don't return error
// (maybe a warning indicating that the variable may not get assigned in the if)


Expand Down