diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-03-08 19:39:35 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-03-08 19:39:35 +0000 |
commit | 230b08322d57e4ad2bf58206a60b98dc97b1ac61 (patch) | |
tree | f65d6ea9ccdf650d1807b41e06515fb50d6e72eb /test/FrontendC/mmx-inline-asm.c | |
parent | 5bf76cd11913310cef04a21aef6db29897f32939 (diff) |
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
Diffstat (limited to 'test/FrontendC/mmx-inline-asm.c')
-rw-r--r-- | test/FrontendC/mmx-inline-asm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/FrontendC/mmx-inline-asm.c b/test/FrontendC/mmx-inline-asm.c index ebfe3bb037..f888d75bf7 100644 --- a/test/FrontendC/mmx-inline-asm.c +++ b/test/FrontendC/mmx-inline-asm.c @@ -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; |