GP-4871 Don't ignore signed to unsigned integer casts for

FLOAT_INT2FLOAT
This commit is contained in:
caheckman 2024-08-23 00:11:47 +00:00
parent a4d97ff872
commit e5969a613c
16 changed files with 408 additions and 16 deletions

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -267,14 +267,14 @@ void FunctionTestCollection::restoreXml(DocumentStorage &store,const Element *el
buildProgram(store);
}
else
throw IfaceParseError("Unknown tag in <decompiletest>: "+subel->getName());
throw IfaceParseError("Unknown tag in <decompilertest>: "+subel->getName());
}
if (!sawScript)
throw IfaceParseError("Did not see <script> tag in <decompiletest>");
throw IfaceParseError("Did not see <script> tag in <decompilertest>");
if (!sawTests)
throw IfaceParseError("Did not see any <stringmatch> tags in <decompiletest>");
throw IfaceParseError("Did not see any <stringmatch> tags in <decompilertest>");
if (!sawProgram)
throw IfaceParseError("No <binaryimage> tag in <decompiletest>");
throw IfaceParseError("No <binaryimage> tag in <decompilertest>");
}
/// Pull the script and tests from a comment in \<binaryimage>