Try to fix the compilation error due to type incombatibility.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127265 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2011-03-08 19:39:35 +00:00
parent 5bf76cd119
commit 230b08322d

View File

@ -3,10 +3,11 @@
// XTARGET: x86,i386,i686
// <rdar://problem/9091220>
#include <mmintrin.h>
#include <stdint.h>
// CHECK: type { x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx }
void foo(long long fill) {
void foo(int64_t fill) {
__m64 vfill = _mm_cvtsi64_m64(fill);
__m64 v1, v2, v3, v4, v5, v6, v7;