[PATCH] D48264: [MCA][NFC] Add generic XOP resource tests

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 18 04:32:39 PDT 2018


RKSimon added inline comments.


================
Comment at: test/tools/llvm-mca/X86/Generic/resources-xop.s:29
+vpcmov %xmm0, %xmm1, %xmm2, %xmm4
+vpcmov %xmm0, (%rax), %xmm2, %xmm4
+
----------------
Don't duplicate, just put all the memory folds together:
```
vpcmov %xmm0, %xmm1, %xmm2, %xmm4
vpcmov (%rax), %xmm1, %xmm2, %xmm4
vpcmov  %xmm0, (%rax),%xmm2, %xmm4
```


Repository:
  rL LLVM

https://reviews.llvm.org/D48264





More information about the llvm-commits mailing list