mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 14:26:06 +00:00

Some tests are removed because the error conditions can no longer occur with opaque pointers.
14 lines
370 B
LLVM
14 lines
370 B
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
|
|
; Test that align(N) is accepted as an alternative syntax to align N
|
|
|
|
; CHECK: define void @param_align4(ptr align 4 %ptr) {
|
|
define void @param_align4(ptr align(4) %ptr) {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define void @param_align128(ptr align 128 %0) {
|
|
define void @param_align128(ptr align(128)) {
|
|
ret void
|
|
}
|