@@ -1013,7 +1013,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1013
1013
return false ; // clb[abc
1014
1014
}
1015
1015
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" );
1017
1017
(*token_index)++;
1018
1018
if (!checkTokenType (tokens[*token_index], TOKEN_COLON)) {
1019
1019
if (!checkTokenType (tokens[*token_index],
@@ -1028,7 +1028,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1028
1028
return false ; // clb[9:abc
1029
1029
}
1030
1030
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" );
1032
1032
(*token_index)++;
1033
1033
if (!checkTokenType (tokens[*token_index],
1034
1034
TOKEN_CLOSE_SQUARE_BRACKET)) {
@@ -1068,7 +1068,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1068
1068
return false ;
1069
1069
}
1070
1070
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" );
1072
1072
(*token_index)++;
1073
1073
if (!checkTokenType (tokens[*token_index], TOKEN_COLON)) {
1074
1074
if (!checkTokenType (tokens[*token_index],
@@ -1083,7 +1083,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1083
1083
return false ;
1084
1084
}
1085
1085
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" );
1087
1087
(*token_index)++;
1088
1088
if (!checkTokenType (tokens[*token_index],
1089
1089
TOKEN_CLOSE_SQUARE_BRACKET)) {
@@ -1144,7 +1144,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1144
1144
return false ;
1145
1145
}
1146
1146
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" );
1148
1148
(*token_index)++;
1149
1149
if (!checkTokenType (tokens[*token_index], TOKEN_COLON)) {
1150
1150
if (!checkTokenType (tokens[*token_index],
@@ -1159,7 +1159,7 @@ static bool realloc_and_load_pb_graph_pin_ptrs_at_var(const int line_num,
1159
1159
return false ;
1160
1160
}
1161
1161
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" );
1163
1163
(*token_index)++;
1164
1164
if (!checkTokenType (tokens[*token_index],
1165
1165
TOKEN_CLOSE_SQUARE_BRACKET)) {
0 commit comments