From: Dan Gohman Date: Tue, 12 Jan 2016 21:01:30 +0000 (+0000) Subject: [WebAssembly] Fix a test to work even when the integrated assembler is enabled. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=548cf051f4518fe48260eb2b4d50bdba7ff34949;p=oota-llvm.git [WebAssembly] Fix a test to work even when the integrated assembler is enabled. Add -no-integrated-as to this test, since it's testing inline asm strings that aren't actually valid assembly syntax. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/WebAssembly/inline-asm.ll b/test/CodeGen/WebAssembly/inline-asm.ll index 5704abd5674..f35042e64f8 100644 --- a/test/CodeGen/WebAssembly/inline-asm.ll +++ b/test/CodeGen/WebAssembly/inline-asm.ll @@ -1,6 +1,7 @@ -; RUN: llc < %s -asm-verbose=false | FileCheck %s +; RUN: llc < %s -asm-verbose=false -no-integrated-as | FileCheck %s -; Test basic inline assembly. +; Test basic inline assembly. Pass -no-integrated-as since these aren't +; actually valid assembly syntax. target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" target triple = "wasm32-unknown-unknown"