diff options
author | Johnathan Corgan | 2011-07-08 10:23:31 -0700 |
---|---|---|
committer | Johnathan Corgan | 2011-07-08 10:23:31 -0700 |
commit | 666cd2dd6818fb66e538fa52957f3a23d68e7b94 (patch) | |
tree | 93a5240422a410d380cf11488097a2a871b8a2be /volk/lib/qa_64u_popcnt_aligned16.cc | |
parent | 5938a37512ec66872adf28b260cb1d2bfefa9602 (diff) | |
parent | 9bfe75fd7c6a7069db2d2a98195faabf6ba248e2 (diff) | |
download | gnuradio-666cd2dd6818fb66e538fa52957f3a23d68e7b94.tar.gz gnuradio-666cd2dd6818fb66e538fa52957f3a23d68e7b94.tar.bz2 gnuradio-666cd2dd6818fb66e538fa52957f3a23d68e7b94.zip |
Merged jblum/new_volk into master
Diffstat (limited to 'volk/lib/qa_64u_popcnt_aligned16.cc')
-rw-r--r-- | volk/lib/qa_64u_popcnt_aligned16.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/volk/lib/qa_64u_popcnt_aligned16.cc b/volk/lib/qa_64u_popcnt_aligned16.cc index 85ef58795..6be4e50ea 100644 --- a/volk/lib/qa_64u_popcnt_aligned16.cc +++ b/volk/lib/qa_64u_popcnt_aligned16.cc @@ -25,10 +25,10 @@ void qa_64u_popcnt_aligned16::t1() { double total; const int ITERS = 10000000; - uint64_t input0 __attribute__ ((aligned (16))); + __VOLK_ATTR_ALIGNED(16) uint64_t input0; - uint64_t output0 __attribute__ ((aligned (16))); - uint64_t output01 __attribute__ ((aligned (16))); + __VOLK_ATTR_ALIGNED(16) uint64_t output0; + __VOLK_ATTR_ALIGNED(16) uint64_t output01; input0 = ((uint64_t) (rand() - (RAND_MAX/2))); output0 = 0; |