Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / WebAssembly / clear-cache.ll
blobe9a8743446f50f5c871961b2ad1507e9b3fd5e39
1 ; RUN: not --crash llc < %s -asm-verbose=false 2>&1 | FileCheck %s
3 target triple = "wasm32-unknown-unknown"
5 ; CHECK: LLVM ERROR: llvm.clear_cache is not supported on wasm
6 define void @clear_cache(ptr %begin, ptr %end) {
7 entry:
8   call void @llvm.clear_cache(ptr %begin, ptr %end)
9   ret void
12 declare void @llvm.clear_cache(ptr, ptr)