blob: 9b4ac4425ca94ba124cadfecb394b5b11a0086c5 [file] [log] [blame]
JF Bastien89696662015-07-23 23:00:04 +00001; This tests that llc accepts all valid WebAssembly CPUs.
2
Dan Gohman7d7409e2017-02-28 23:37:04 +00003; RUN: llc < %s -asm-verbose=false -mtriple=wasm32-unknown-unknown-wasm -mcpu=mvp 2>&1 | FileCheck %s
4; RUN: llc < %s -asm-verbose=false -mtriple=wasm64-unknown-unknown-wasm -mcpu=mvp 2>&1 | FileCheck %s
5; RUN: llc < %s -asm-verbose=false -mtriple=wasm32-unknown-unknown-wasm -mcpu=generic 2>&1 | FileCheck %s
6; RUN: llc < %s -asm-verbose=false -mtriple=wasm64-unknown-unknown-wasm -mcpu=generic 2>&1 | FileCheck %s
7; RUN: llc < %s -asm-verbose=false -mtriple=wasm32-unknown-unknown-wasm -mcpu=bleeding-edge 2>&1 | FileCheck %s
8; RUN: llc < %s -asm-verbose=false -mtriple=wasm64-unknown-unknown-wasm -mcpu=bleeding-edge 2>&1 | FileCheck %s
9; RUN: llc < %s -asm-verbose=false -mtriple=wasm32-unknown-unknown-wasm -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
10; RUN: llc < %s -asm-verbose=false -mtriple=wasm64-unknown-unknown-wasm -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
JF Bastien89696662015-07-23 23:00:04 +000011
Dan Gohmane5d3c152016-01-20 05:55:09 +000012; CHECK-NOT: is not a recognized processor for this target
13; INVALID: {{.+}} is not a recognized processor for this target
JF Bastien89696662015-07-23 23:00:04 +000014
JF Bastien600aee92015-07-31 17:53:38 +000015define i32 @f(i32 %i_like_the_web) {
16 ret i32 %i_like_the_web
JF Bastien89696662015-07-23 23:00:04 +000017}