mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
WebAssembly: add a generic CPU
Summary: WebAssemblySubtarget.cpp expects a default 'generic' CPU to exist, and this seems to be prevalent with other targets. It makes sense to have something between MVP and bleeding-edge, even though for now it's the same as MVP. This removes a warning that's currently generated. Subscribers: jfb, llvm-commits, sunfish Differential Revision: http://reviews.llvm.org/D11546 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243345 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
688414f251
commit
7483355e34
@ -50,6 +50,9 @@ def WebAssemblyInstrInfo : InstrInfo;
|
|||||||
// Minimal Viable Product.
|
// Minimal Viable Product.
|
||||||
def : ProcessorModel<"mvp", NoSchedModel, []>;
|
def : ProcessorModel<"mvp", NoSchedModel, []>;
|
||||||
|
|
||||||
|
// Generic processor: latest stable version.
|
||||||
|
def : ProcessorModel<"generic", NoSchedModel, []>;
|
||||||
|
|
||||||
// Latest and greatest experimental version of WebAssembly. Bugs included!
|
// Latest and greatest experimental version of WebAssembly. Bugs included!
|
||||||
def : ProcessorModel<"bleeding-edge", NoSchedModel, [FeatureSIMD128]>;
|
def : ProcessorModel<"bleeding-edge", NoSchedModel, [FeatureSIMD128]>;
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
|
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
|
||||||
; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
|
; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
|
||||||
|
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
|
||||||
|
; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
|
||||||
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
|
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
|
||||||
; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
|
; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
|
||||||
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
|
; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
|
||||||
|
Loading…
Reference in New Issue
Block a user