mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
81bb5f99ad
The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
13 lines
480 B
LLVM
13 lines
480 B
LLVM
; RUN: not llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -wasm-disable-explicit-locals -wasm-keep-registers -no-integrated-as
|
|
|
|
; Test basic inline assembly "m" operands, which are unsupported. Pass
|
|
; -no-integrated-as since these aren't actually valid assembly syntax.
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define void @bar(i32* %r, i32* %s) {
|
|
entry:
|
|
tail call void asm sideeffect "# $0 = bbb($1)", "=*m,*m"(i32* %s, i32* %r) #0, !srcloc !1
|
|
ret void
|
|
}
|