diff options
author | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:37:29 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:37:29 -0400 |
commit | 71a4a6821276690eed15df8d2c246be499da1e29 (patch) | |
tree | efa8c5c889fff6e650b65c9ce0efb0af68e0dc31 | |
parent | bbb634b371a379fe32de825b68381a229949165a (diff) | |
download | vecmathlib-71a4a6821276690eed15df8d2c246be499da1e29.zip vecmathlib-71a4a6821276690eed15df8d2c246be499da1e29.tar.gz |
Modern versions of Clang support __builtin_assume_aligned
-rw-r--r-- | instantiations.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/instantiations.cc b/instantiations.cc index 47349a6..9bd5351 100644 --- a/instantiations.cc +++ b/instantiations.cc @@ -110,12 +110,6 @@ const int vecsize = realV::size; -#ifdef __clang__ -# define __builtin_assume_aligned(exp, align) (exp) -#endif - - - // Simple, naive loop adding two arrays extern "C" void loop_add(real* a, |