1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
3 ; Large vector for intrinsics is valid
5 define dso_local <8192 x i32> @test_intrin(<8192 x i32> %l, <8192 x i32> %r, <8192 x i32> %amt) {
7 %b = call <8192 x i32> @llvm.fshr.v8192i32(<8192 x i32> %l, <8192 x i32> %r, <8192 x i32> %amt)
10 declare <8192 x i32> @llvm.fshr.v8192i32 (<8192 x i32> %l, <8192 x i32> %r, <8192 x i32> %amt)
12 ; CHECK: Incorrect alignment of return type to called function!
14 define dso_local void @foo() {
16 call <8192 x float> @bar()
20 declare dso_local <8192 x float> @bar()