1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Test that byval cannot be used with pointers to

types with no size.

llvm-svn: 45959
This commit is contained in:
Duncan Sands 2008-01-14 14:55:05 +00:00
parent 5bd24c7449
commit c6e42dfda1

View File

@ -1,2 +1,3 @@
; RUN: not llvm-as < %s -o /dev/null -f
declare void @h(i32* %num) byval
%s = type opaque
declare void @h(%s* byval %num)