aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2022-11-19 14:38:53 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2022-11-19 14:38:53 +0000
commit88be0a21975b8f6fb5e48c86ba86543315794d6b (patch)
tree81786fb9fcd6eea4bc36fc28f7a1e13c4f105f32
parent3ad13ca278a59d035cbd8f1fad804cf948d18d81 (diff)
downloadllvm-88be0a21975b8f6fb5e48c86ba86543315794d6b.zip
llvm-88be0a21975b8f6fb5e48c86ba86543315794d6b.tar.gz
llvm-88be0a21975b8f6fb5e48c86ba86543315794d6b.tar.bz2
[X86] Ensure we're testing the misched-matrix.ll tests with the generic cpu
Noticed when experimenting with using tuning parameters to control ILP mode
-rw-r--r--llvm/test/CodeGen/X86/misched-matrix.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/misched-matrix.ll b/llvm/test/CodeGen/X86/misched-matrix.ll
index 178bea9..e909348 100644
--- a/llvm/test/CodeGen/X86/misched-matrix.ll
+++ b/llvm/test/CodeGen/X86/misched-matrix.ll
@@ -1,10 +1,10 @@
-; RUN: llc < %s -mtriple=x86_64-- -mcpu=core2 -pre-RA-sched=source -enable-misched \
+; RUN: llc < %s -mtriple=x86_64-- -mcpu=generic -pre-RA-sched=source -enable-misched \
; RUN: -misched-topdown -verify-machineinstrs \
; RUN: | FileCheck %s -check-prefix=TOPDOWN
-; RUN: llc < %s -mtriple=x86_64-- -mcpu=core2 -pre-RA-sched=source -enable-misched \
+; RUN: llc < %s -mtriple=x86_64-- -mcpu=generic -pre-RA-sched=source -enable-misched \
; RUN: -misched=ilpmin -verify-machineinstrs \
; RUN: | FileCheck %s -check-prefix=ILPMIN
-; RUN: llc < %s -mtriple=x86_64-- -mcpu=core2 -pre-RA-sched=source -enable-misched \
+; RUN: llc < %s -mtriple=x86_64-- -mcpu=generic -pre-RA-sched=source -enable-misched \
; RUN: -misched=ilpmax -verify-machineinstrs \
; RUN: | FileCheck %s -check-prefix=ILPMAX
;