Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AsmParser / macro-same-context.ll
blob1e58830493f37a95a0447cbeabc1e07e287ffd47
1 ;; Test that macros in inline assembly blocks share the same context,
2 ;; thus a definition is available to the whole file. PR36110
3 ; UNSUPPORTED: target={{.*}}-zos{{.*}},target=nvptx{{.*}}
4 ; RUN: not llc < %s 2>&1 | FileCheck %s
5 ; REQUIRES: default_triple
7 define void @test() {
8   call void asm sideeffect ".macro FOO\0A.endm", "~{dirflag},~{fpsr},~{flags}"() #1
9   call void asm sideeffect ".macro FOO\0A.endm", "~{dirflag},~{fpsr},~{flags}"() #1
10 ; CHECK: error: macro 'FOO' is already defined
11   ret void