From 6eab7c813eee5b7fb308c27498e213561fcb3b85 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 29 Mar 2021 19:36:06 +0000
Subject: [PATCH 1/2] Bump pygments from 2.2.0 to 2.7.4 in /docs

Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4.
- [Release notes](https://github.com/pygments/pygments/releases)
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
- [Commits](https://github.com/pygments/pygments/compare/2.2.0...2.7.4)

Signed-off-by: dependabot[bot] <support@github.com>
---
 docs/requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/requirements.txt b/docs/requirements.txt
index 4b1565b36b..0407da5ea3 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -1,4 +1,4 @@
 Sphinx==1.8.5
-Pygments==2.2.0
+Pygments==2.7.4
 sphinx-autobuild
 sphinx_rtd_theme==0.2.5b1

From dae8c12c600bcc46163c6bcf852679b45ce6e33c Mon Sep 17 00:00:00 2001
From: Alfonso Rodriguez <alfonso.rodriguezm@upm.es>
Date: Fri, 9 Apr 2021 20:12:19 +0200
Subject: [PATCH 2/2] Ensure proper alignment with 'CacheBlockBytes' in
 charcount test

---
 tests/charcount.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/charcount.c b/tests/charcount.c
index f8b3641b27..6a3d2744d2 100644
--- a/tests/charcount.c
+++ b/tests/charcount.c
@@ -1,6 +1,6 @@
 #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)
 {