llvm-project/llvm/test/Assembler/anon-functions.ll
Nikita Popov 75a479221b [Assembler] Convert tests to opaque pointers (NFC)
Some tests are removed because the error conditions can no longer
occur with opaque pointers.
2022-12-13 14:36:21 +01:00

28 lines
651 B
LLVM

; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
; RUN: verify-uselistorder %s
; PR3611
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
target triple = "x86_64-unknown-linux-gnu"
@f = alias void (), ptr @0 ; <ptr> [#uses=0]
@g = alias void (), ptr @1 ; <ptr> [#uses=0]
@h = external global ptr ; <ptr> [#uses=0]
define internal void @0() nounwind {
entry:
store ptr @0, ptr @h
br label %return
return: ; preds = %entry
ret void
}
define internal void @1() nounwind {
entry:
br label %return
return: ; preds = %entry
ret void
}