From 1d706a3ef118119c861294659f374bea68fa948b Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Thu, 15 Jan 2015 04:55:21 -0800 Subject: [PATCH] rename file --- cbits/aes/x86ni.c | 4 ++-- cbits/aes/{aes_x86ni_impl.c => x86ni_impl.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename cbits/aes/{aes_x86ni_impl.c => x86ni_impl.c} (100%) diff --git a/cbits/aes/x86ni.c b/cbits/aes/x86ni.c index 217045b..a881fda 100644 --- a/cbits/aes/x86ni.c +++ b/cbits/aes/x86ni.c @@ -302,7 +302,7 @@ static __m128i ghash_add(__m128i tag, __m128i h, __m128i m) #define DO_ENC_BLOCK DO_ENC_BLOCK128 #define PRELOAD_DEC PRELOAD_DEC_KEYS128 #define DO_DEC_BLOCK DO_DEC_BLOCK128 -#include "aes_x86ni_impl.c" +#include #undef SIZE #undef SIZED @@ -317,7 +317,7 @@ static __m128i ghash_add(__m128i tag, __m128i h, __m128i m) #define DO_ENC_BLOCK DO_ENC_BLOCK256 #define PRELOAD_DEC PRELOAD_DEC_KEYS256 #define DO_DEC_BLOCK DO_DEC_BLOCK256 -#include "aes_x86ni_impl.c" +#include #undef SIZE #undef SIZED diff --git a/cbits/aes/aes_x86ni_impl.c b/cbits/aes/x86ni_impl.c similarity index 100% rename from cbits/aes/aes_x86ni_impl.c rename to cbits/aes/x86ni_impl.c