mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-03 18:46:06 +00:00

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
20 lines
449 B
LLVM
20 lines
449 B
LLVM
; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define void @test() {
|
|
call void @foo()
|
|
call void @plain()
|
|
ret void
|
|
}
|
|
|
|
declare void @foo() #0
|
|
declare void @plain()
|
|
|
|
attributes #0 = { "wasm-import-module"="bar" "wasm-import-name"="qux" }
|
|
|
|
; CHECK-NOT: .import_module plain
|
|
; CHECK: .import_module foo, bar
|
|
; CHECK: .import_name foo, qux
|
|
; CHECK-NOT: .import_module plain
|