From a6ac5b81fb084501e3ffcbcd95002735e248572e Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Sun, 1 Mar 2015 14:01:51 -0500 Subject: [PATCH] x86_64: Add const qualifier to load_ptr_2. --- include/gcc/x86_64/ck_pr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gcc/x86_64/ck_pr.h b/include/gcc/x86_64/ck_pr.h index 22ba76a..fd9db31 100644 --- a/include/gcc/x86_64/ck_pr.h +++ b/include/gcc/x86_64/ck_pr.h @@ -167,7 +167,7 @@ ck_pr_load_64_2(const uint64_t target[2], uint64_t v[2]) } CK_CC_INLINE static void -ck_pr_load_ptr_2(void *t, void *v) +ck_pr_load_ptr_2(const void *t, void *v) { ck_pr_load_64_2(t, v); return;