llvm-project/llvm/test/Assembler/align-inst-load.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

7 lines
124 B
LLVM

; RUN: not llvm-as %s -o /dev/null 2>/dev/null
define void @foo(ptr %p) {
load i1, ptr %p, align 8589934592
ret void
}