File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -956,7 +956,7 @@ bool G4_INST::hasNoPipe()
956
956
957
957
bool G4_INST::isLongPipeType (G4_Type type) const
958
958
{
959
- if (builder.hasPartialInt64Support ())
959
+ if (builder.hasInt64Add ())
960
960
{
961
961
return type == Type_DF;
962
962
}
@@ -970,7 +970,7 @@ bool G4_INST::isIntegerPipeType(G4_Type type) const
970
970
return true ;
971
971
}
972
972
973
- if (builder.hasPartialInt64Support ())
973
+ if (builder.hasInt64Add ())
974
974
{
975
975
return type == Type_UQ || type == Type_Q;
976
976
}
@@ -1023,7 +1023,7 @@ bool G4_INST::isLongPipeInstructionXe() const
1023
1023
return true ;
1024
1024
}
1025
1025
1026
- if (!builder.hasPartialInt64Support ())
1026
+ if (!builder.hasInt64Add ())
1027
1027
{
1028
1028
for (int i = 0 ; i < G4_MAX_SRCS; i++)
1029
1029
{
@@ -1142,7 +1142,7 @@ SB_INST_PIPE G4_INST::getDataTypePipeXe(G4_Type type)
1142
1142
1143
1143
case Type_Q:
1144
1144
case Type_UQ:
1145
- if (builder.hasPartialInt64Support ())
1145
+ if (builder.hasInt64Add ())
1146
1146
{
1147
1147
return PIPE_INT;
1148
1148
}
Original file line number Diff line number Diff line change @@ -822,7 +822,7 @@ SPDX-License-Identifier: MIT
822
822
{
823
823
return false ;
824
824
}
825
- bool hasPartialInt64Support () const
825
+ bool hasInt64Add () const
826
826
{
827
827
return false ;
828
828
}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ static std::string makePlatformsString()
61
61
bool Options::parseOptions (int argc, const char * argv[])
62
62
{
63
63
int startPos = 0 ;
64
- assert (! argToOption.empty () && " Must be initialized first!" );
64
+ assert (!argToOption.empty () && " Must be initialized first!" );
65
65
66
66
#define MAX_ARGC 128
67
67
MUST_BE_TRUE (argc < MAX_ARGC, " too many options for vISA builder" );
You can’t perform that action at this time.
0 commit comments