llvm-project/llvm/test/Verifier/param-ret-align.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
230 B
LLVM
Raw Normal View History

; RUN: not llvm-as < %s 2>&1 | FileCheck %s
; CHECK: Incorrect alignment of return type to called function!
define dso_local void @foo() {
entry:
call <8192 x float> @bar()
ret void
}
declare dso_local <8192 x float> @bar()