blob: f5af7f35c0552754c825f54cc0a81ad7e2f96a66 [file] [log] [blame]
JF Bastien89696662015-07-23 23:00:04 +00001; This tests that llc accepts all valid WebAssembly CPUs.
2
3; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
4; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
JF Bastien088c47e2015-07-27 23:25:54 +00005; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
6; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
JF Bastien89696662015-07-23 23:00:04 +00007; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
8; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
9; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
10; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
11
12; CHECK-NOT: {{.*}} is not a recognized processor for this target
13; INVALID: {{.*}} is not a recognized processor for this target
14
15define void @f(i64 %i_like_the_web) {
16 ret void
17}