Skip to content

Commit 6ff7d39

Browse files
authored
Delete MMX name mangler case (#103)
The type was removed in llvm/llvm-project#98505
1 parent cf2e381 commit 6ff7d39

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Dialect/Utils.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
14-
* limitations under the License.
14+
* limitations under the License.
1515
*/
1616

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

0 commit comments

Comments
 (0)