[PATCH] D11479: WebAssembly: test that valid -mcpu flags are accepted.
JF Bastien
jfb at chromium.org
Thu Jul 23 16:00:32 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL243058: WebAssembly: test that valid -mcpu flags are accepted. (authored by jfb).
Changed prior to commit:
http://reviews.llvm.org/D11479?vs=30535&id=30536#toc
Repository:
rL LLVM
http://reviews.llvm.org/D11479
Files:
llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
Index: llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
===================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
+++ llvm/trunk/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.30536.patch
Type: text/x-patch
Size: 1039 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150723/65b9779f/attachment.bin>
More information about the llvm-commits
mailing list