Merged from r218248:
authorDaniel Sanders <daniel.sanders@imgtec.com>
Mon, 1 Dec 2014 10:14:30 +0000 (10:14 +0000)
committerDaniel Sanders <daniel.sanders@imgtec.com>
Mon, 1 Dec 2014 10:14:30 +0000 (10:14 +0000)
commit12a6a9224a3f5015cd6048aeba98a3e3ceed30d1
tree4eb71d48ffec2ec4bcf00082bba127d5d9442c9f
parent805d80457540d068551fa1ccfa8f0d4bd0ce6e24
Merged from r218248:

[mips] Correct alignment of vectors passed in varargs for the O32 ABI.

Summary:
Vectors are normally 16-byte aligned, however the O32 ABI enforces a
maximum alignment of 8-bytes since the base of the stack is 8-byte aligned.
Previously, this was enforced on the caller side, but not on the callee side.

This fixes the output of OpenCL's printf when given vectors.

Reviewers: atanasyan

Reviewed By: atanasyan

Subscribers: llvm-commits, pekka.jaaskelainen

Differential Revision: http://reviews.llvm.org/D5433

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_35@222999 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/TargetInfo.cpp
test/CodeGen/mips-varargs.c [new file with mode: 0644]