[PATCH] D11479: WebAssembly: test that valid -mcpu flags are accepted.
JF Bastien
jfb at chromium.org
Thu Jul 23 16:00:13 PDT 2015
jfb created this revision.
jfb added subscribers: llvm-commits, sunfish.
Herald added subscribers: jfb, aemerson.
AArch64 has a similar test.
http://reviews.llvm.org/D11479
Files:
test/CodeGen/WebAssembly/cpus.ll
Index: test/CodeGen/WebAssembly/cpus.ll
===================================================================
--- /dev/null
+++ test/CodeGen/WebAssembly/cpus.ll
@@ -0,0 +1,15 @@
+; This tests that llc accepts all valid WebAssembly CPUs.
+
+; 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=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=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
+; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
+
+; CHECK-NOT: {{.*}} is not a recognized processor for this target
+; INVALID: {{.*}} is not a recognized processor for this target
+
+define void @f(i64 %i_like_the_web) {
+ ret void
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11479.30535.patch
Type: text/x-patch
Size: 983 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150723/9e79ff07/attachment.bin>
More information about the llvm-commits
mailing list