diff options
author | Eric Christopher <echristo@apple.com> | 2010-04-01 03:07:20 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-04-01 03:07:20 +0000 |
commit | 6e92883368fd676f8fc7bc854031f853cfc2ead5 (patch) | |
tree | adcccf7ca4177d4b73d9bf2320a1e2adc978c0ac | |
parent | 33c903208e8e2f91b8986b0ba7e5f7e077398ea6 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100079 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/wmmintrin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Headers/wmmintrin.h b/lib/Headers/wmmintrin.h index f009933d17..6b2e4687d4 100644 --- a/lib/Headers/wmmintrin.h +++ b/lib/Headers/wmmintrin.h @@ -51,7 +51,7 @@ _mm_aesdec_si128(__m128i __V, __m128i __R) static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) _mm_aesdeclast_si128(__m128i __V, __m128i __R) { - return (__m128i)__builtin_ia32_aesdeclast128(__V1, __V2); + return (__m128i)__builtin_ia32_aesdeclast128(__V, __R); } static __inline__ __m128i __attribute__((__always_inline__, __nodebug__)) |