Merge pull request #853 from alfonrod/fix-tests-charcount
Fix memory alignment in character count RoCC test
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
Sphinx==1.8.5
|
Sphinx==1.8.5
|
||||||
Pygments==2.2.0
|
Pygments==2.7.4
|
||||||
sphinx-autobuild
|
sphinx-autobuild
|
||||||
sphinx_rtd_theme==0.2.5b1
|
sphinx_rtd_theme==0.2.5b1
|
||||||
docutils==0.16
|
docutils==0.16
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include "rocc.h"
|
#include "rocc.h"
|
||||||
|
|
||||||
char string[64] = "The quick brown fox jumped over the lazy dog";
|
char string[64] __attribute__ ((aligned (64))) = "The quick brown fox jumped over the lazy dog";
|
||||||
|
|
||||||
static inline unsigned long count_chars(char *start, char needle)
|
static inline unsigned long count_chars(char *start, char needle)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user