Skip to content

Commit

Permalink
imm8: u8 -> imm8: i32
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Feb 18, 2018
1 parent 5e08b16 commit aaeeb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coresimd/src/x86/i686/pclmulqdq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern "C" {
#[inline]
#[target_feature(enable = "pclmulqdq")]
#[cfg_attr(test, assert_instr(pclmulqdq, imm8 = 0))]
pub unsafe fn _mm_clmulepi64_si128(a: __m128i, b: __m128i, imm8: u8) -> __m128i {
pub unsafe fn _mm_clmulepi64_si128(a: __m128i, b: __m128i, imm8: i32) -> __m128i {
macro_rules! call {
($imm8:expr) => (pclmulqdq(a, b, $imm8))
}
Expand Down

0 comments on commit aaeeb50

Please sign in to comment.