Skip to content

Commit f1f6b71

Browse files
mithrokmurray
authored andcommitted
vpr/pack: Fix mispelling of significant
s/siginificant/significant/g
1 parent 0885d42 commit f1f6b71

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

vpr/src/pack/pb_type_graph.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
10131013
return false; //clb[abc
10141014
}
10151015
pb_msb = vtr::atoi(tokens[*token_index].data);
1016-
VTR_ASSERT_MSG(pb_msb >= 0, "Pin most-siginificant-bit must be non-negative");
1016+
VTR_ASSERT_MSG(pb_msb >= 0, "Pin most-significant-bit must be non-negative");
10171017
(*token_index)++;
10181018
if (!checkTokenType(tokens[*token_index], TOKEN_COLON)) {
10191019
if (!checkTokenType(tokens[*token_index],
@@ -1028,7 +1028,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
10281028
return false; //clb[9:abc
10291029
}
10301030
pb_lsb = vtr::atoi(tokens[*token_index].data);
1031-
VTR_ASSERT_MSG(pb_lsb >= 0, "Pin most-siginificant-bit must be non-negative");
1031+
VTR_ASSERT_MSG(pb_lsb >= 0, "Pin most-significant-bit must be non-negative");
10321032
(*token_index)++;
10331033
if (!checkTokenType(tokens[*token_index],
10341034
TOKEN_CLOSE_SQUARE_BRACKET)) {
@@ -1068,7 +1068,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
10681068
return false;
10691069
}
10701070
pb_msb = vtr::atoi(tokens[*token_index].data);
1071-
VTR_ASSERT_MSG(pb_msb >= 0, "Pin most-siginificant-bit must be non-negative");
1071+
VTR_ASSERT_MSG(pb_msb >= 0, "Pin most-significant-bit must be non-negative");
10721072
(*token_index)++;
10731073
if (!checkTokenType(tokens[*token_index], TOKEN_COLON)) {
10741074
if (!checkTokenType(tokens[*token_index],
@@ -1083,7 +1083,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
10831083
return false;
10841084
}
10851085
pb_lsb = vtr::atoi(tokens[*token_index].data);
1086-
VTR_ASSERT_MSG(pb_lsb >= 0, "Pin most-siginificant-bit must be non-negative");
1086+
VTR_ASSERT_MSG(pb_lsb >= 0, "Pin most-significant-bit must be non-negative");
10871087
(*token_index)++;
10881088
if (!checkTokenType(tokens[*token_index],
10891089
TOKEN_CLOSE_SQUARE_BRACKET)) {
@@ -1144,7 +1144,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
11441144
return false;
11451145
}
11461146
pin_msb = vtr::atoi(tokens[*token_index].data);
1147-
VTR_ASSERT_MSG(pin_msb >= 0, "Pin most-siginificant-bit must be non-negative");
1147+
VTR_ASSERT_MSG(pin_msb >= 0, "Pin most-significant-bit must be non-negative");
11481148
(*token_index)++;
11491149
if (!checkTokenType(tokens[*token_index], TOKEN_COLON)) {
11501150
if (!checkTokenType(tokens[*token_index],
@@ -1159,7 +1159,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
11591159
return false;
11601160
}
11611161
pin_lsb = vtr::atoi(tokens[*token_index].data);
1162-
VTR_ASSERT_MSG(pin_lsb >= 0, "Pin most-siginificant-bit must be non-negative");
1162+
VTR_ASSERT_MSG(pin_lsb >= 0, "Pin most-significant-bit must be non-negative");
11631163
(*token_index)++;
11641164
if (!checkTokenType(tokens[*token_index],
11651165
TOKEN_CLOSE_SQUARE_BRACKET)) {

0 commit comments

Comments
 (0)