llvm-project/llvm/test/Assembler/2007-04-20-AlignedLoad.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

9 lines
212 B
LLVM

; RUN: llvm-as < %s | llvm-dis | grep "align 1024"
; RUN: verify-uselistorder %s
define i32 @test(ptr %arg) {
entry:
%tmp2 = load i32, ptr %arg, align 1024 ; <i32> [#uses=1]
ret i32 %tmp2
}