Skip to content

Commit

Permalink
Delete MMX name mangler case (#103)
Browse files Browse the repository at this point in the history
The type was removed in llvm/llvm-project#98505
  • Loading branch information
Sisyph authored Jul 26, 2024
1 parent cf2e381 commit 6ff7d39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Dialect/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* limitations under the License.
*/

#include "llvm-dialects/Dialect/Utils.h"
Expand Down Expand Up @@ -116,7 +116,6 @@ static std::string getMangledTypeStr(Type *Ty, bool &HasUnnamedType) {
case Type::X86_FP80TyID: Result += "f80"; break;
case Type::FP128TyID: Result += "f128"; break;
case Type::PPC_FP128TyID: Result += "ppcf128"; break;
case Type::X86_MMXTyID: Result += "x86mmx"; break;
case Type::X86_AMXTyID: Result += "x86amx"; break;
case Type::IntegerTyID:
Result += "i" + utostr(cast<IntegerType>(Ty)->getBitWidth());
Expand Down

0 comments on commit 6ff7d39

Please sign in to comment.