blob: 33721cd748400a17f5b035fedf88f6e70f5c439b [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
5; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
6; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
7; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
8; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
9
10; CHECK-NOT: {{.*}} is not a recognized processor for this target
11; INVALID: {{.*}} is not a recognized processor for this target
12
13define void @f(i64 %i_like_the_web) {
14 ret void
15}