[clang] [llvm] [mlir] Remove the `x86_mmx` IR type. (PR #98505)

James Y Knight via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 24 19:43:31 PDT 2024


================
@@ -94,14 +94,15 @@ entry:
 
 ;
 ; MMX Store
+; Note: doesn't actually emit a non-temporal store here.
 ;
 
 define void @test_mmx(ptr nocapture %a0, ptr nocapture %a1) {
 ; ALL-LABEL: test_mmx:
 ; ALL:       # %bb.0: # %entry
 ; ALL-NEXT:    movq (%rdi), %mm0
 ; ALL-NEXT:    psrlq $3, %mm0
-; ALL-NEXT:    movntq %mm0, (%rsi)
+; ALL-NEXT:    movq %mm0, (%rsi)
----------------
jyknight wrote:

@RKSimon's 25952ec64791e781f9bdd7bf29ab78f0095b8ee7 fixed this.

https://github.com/llvm/llvm-project/pull/98505


More information about the llvm-commits mailing list