From 2f412bbcfd6d1831ca12f742c8446cde5948efae Mon Sep 17 00:00:00 2001
From: Angus Gratton <gus@projectgus.com>
Date: Fri, 25 Sep 2015 09:22:06 +1000
Subject: [PATCH] unaligned_load tests: Remove incorrect references to
 DoubleException

---
 examples/experiments/unaligned_load/unaligned_load.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/experiments/unaligned_load/unaligned_load.c b/examples/experiments/unaligned_load/unaligned_load.c
index d2d132f..d7f7203 100644
--- a/examples/experiments/unaligned_load/unaligned_load.c
+++ b/examples/experiments/unaligned_load/unaligned_load.c
@@ -207,7 +207,7 @@ void test_string(const char *string, char *label, bool evict_cache)
     run_test(string, test_l16si, "load as l16si", nullvalue, evict_cache);
 }
 
-static void test_doubleexception();
+static void test_isr();
 static void test_sign_extension();
 void sanity_tests(void);
 
@@ -225,7 +225,7 @@ void user_init(void)
     test_string(iromtest, "Cached flash", 0);
     test_string(iromtest, "'Uncached' flash", 1);
 
-    test_doubleexception();
+    test_isr();
     test_sign_extension();
 }
 
@@ -241,9 +241,9 @@ static void frc1_interrupt_handler(void)
     frc1_finished = true;
 }
 
-static void test_doubleexception()
+static void test_isr()
 {
-    printf("Testing DoubleException behaviour...\r\n");
+    printf("Testing behaviour inside ISRs...\r\n");
     timer_set_interrupts(FRC1, false);
     timer_set_run(FRC1, false);
     _xt_isr_attach(INUM_TIMER_FRC1, frc1_interrupt_handler);