llvm-project/llvm/test/CodeGen/WebAssembly/regcoalesce-disable.ll
Matt Arsenault 80e2c26dfd RegisterCoalescer: Fix name of pass
I finally snapped and fixed this inconsistency.
2023-06-21 10:30:43 -04:00

13 lines
347 B
LLVM

; RUN: llc < %s -O1 --debug-pass=Structure 2>&1 | FileCheck %s --check-prefix=O1
; RUN: llc < %s -O2 --debug-pass=Structure 2>&1 | FileCheck %s --check-prefix=O2
; Test if RegisterCoalesce pass is disabled in -O1.
; O1-NOT: Register Coalescer
; O2: Register Coalescer
target triple = "wasm32-unknown-unknown"
define void @test() {
ret void
}