From: Bill Wendling Date: Tue, 8 Mar 2011 19:39:35 +0000 (+0000) Subject: Try to fix the compilation error due to type incombatibility. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=230b08322d57e4ad2bf58206a60b98dc97b1ac61;p=oota-llvm.git 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 --- diff --git a/test/FrontendC/mmx-inline-asm.c b/test/FrontendC/mmx-inline-asm.c index ebfe3bb0373..f888d75bf7b 100644 --- a/test/FrontendC/mmx-inline-asm.c +++ b/test/FrontendC/mmx-inline-asm.c @@ -3,10 +3,11 @@ // XTARGET: x86,i386,i686 // #include +#include // 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;