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 | 2e1e1c1e36b620910219fb383083d7886ca8fdab (patch) | |
tree | 48dd76c61c3e1b77366e97ee6d7652fcada44da9 | |
parent | 880e0b7760d57eb5b9d9d45056a636ce1167f45a (diff) | |
download | bcm5719-llvm-2e1e1c1e36b620910219fb383083d7886ca8fdab.tar.gz bcm5719-llvm-2e1e1c1e36b620910219fb383083d7886ca8fdab.zip |
Try to fix the compilation error due to type incombatibility.
llvm-svn: 127265
-rw-r--r-- | llvm/test/FrontendC/mmx-inline-asm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/FrontendC/mmx-inline-asm.c b/llvm/test/FrontendC/mmx-inline-asm.c index ebfe3bb0373..f888d75bf7b 100644 --- a/llvm/test/FrontendC/mmx-inline-asm.c +++ b/llvm/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; |