PPC32 va_list is an actual structure so va_copy needs to copy the whole
authorRoman Divacky <rdivacky@freebsd.org>
Thu, 25 Jul 2013 21:36:47 +0000 (21:36 +0000)
committerRoman Divacky <rdivacky@freebsd.org>
Thu, 25 Jul 2013 21:36:47 +0000 (21:36 +0000)
commitc3825df87e7485dcff3572b12570e0c474dbc042
treea9c92d954663d36d552e617f9e4b5537e55f9073
parent13b63e89837a1f10b03eafb85a491014c4459519
PPC32 va_list is an actual structure so va_copy needs to copy the whole
structure not just a pointer. This implements that and thus fixes va_copy
on PPC32. Fixes #15286. Both bug and patch by Florian Zeitz!

llvm-svn: 187158
llvm/lib/Target/PowerPC/PPCISelLowering.cpp
llvm/lib/Target/PowerPC/PPCISelLowering.h
llvm/test/CodeGen/PowerPC/ppc32-vacopy.ll [new file with mode: 0644]