[Mlir-commits] [clang] [llvm] [mlir] Remove the `x86_mmx` IR type. (PR #98505)
James Y Knight
llvmlistbot at llvm.org
Sun Jul 14 09:21:41 PDT 2024
================
@@ -1,9 +0,0 @@
-; RUN: llvm-as < %s | llvm-dis | FileCheck %s
-; RUN: verify-uselistorder %s
-; Basic smoke test for x86_mmx type.
-
-; CHECK: define x86_mmx @sh16
----------------
jyknight wrote:
`x86_mmx` would be translated to `<1 x i64>`, like in the other tests. That is:
```
define <1 x i64> @sh16(<1 x i64> %A) {
ret <1 x i64> %A
}
```
https://github.com/llvm/llvm-project/pull/98505
More information about the Mlir-commits
mailing list