mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 00:56:05 +00:00

Some tests are removed because the error conditions can no longer occur with opaque pointers.
9 lines
212 B
LLVM
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
|
|
}
|