diff options
author | Dan Gohman <dan433584@gmail.com> | 2016-05-10 17:39:48 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2016-05-10 17:39:48 +0000 |
commit | 2e64438ae403441378b4cc8ab08ecc67d399766b (patch) | |
tree | b34cb346d2a9edcfad9cc40f29a818456c6b2c0b /llvm/test/CodeGen/WebAssembly/cfg-stackify.ll | |
parent | 0f522a590377f56052a14aa2b1f3c3bc8af3a5fe (diff) | |
download | bcm5719-llvm-2e64438ae403441378b4cc8ab08ecc67d399766b.tar.gz bcm5719-llvm-2e64438ae403441378b4cc8ab08ecc67d399766b.zip |
[WebAssembly] Preliminary fast-isel support.
llvm-svn: 269083
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/cfg-stackify.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/cfg-stackify.ll | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll b/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll index 442d0d4ea25..b29cd8860a2 100644 --- a/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll +++ b/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll @@ -1,8 +1,11 @@ -; RUN: llc < %s -asm-verbose=false -disable-block-placement -verify-machineinstrs | FileCheck %s -; RUN: llc < %s -asm-verbose=false -verify-machineinstrs | FileCheck -check-prefix=OPT %s +; RUN: llc < %s -asm-verbose=false -disable-block-placement -verify-machineinstrs -fast-isel=false | FileCheck %s +; RUN: llc < %s -asm-verbose=false -verify-machineinstrs -fast-isel=false | FileCheck -check-prefix=OPT %s ; Test the CFG stackifier pass. +; Explicitly disable fast-isel, since it gets implicitly enabled in the +; optnone test. + target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" target triple = "wasm32-unknown-unknown" |