From c4accd6ea2bd7893d44a2ffd253e972ab2c49099 Mon Sep 17 00:00:00 2001 From: credmon Date: Wed, 15 Jun 2016 01:18:43 +0000 Subject: [PATCH] Fix ARM jmpbuf header include bug. tdep/jmpbuf.h was not including arm-tdep/jmpbuf.h. --- include/tdep/jmpbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tdep/jmpbuf.h b/include/tdep/jmpbuf.h index 4eae183e..13093a0c 100644 --- a/include/tdep/jmpbuf.h +++ b/include/tdep/jmpbuf.h @@ -5,7 +5,7 @@ #if defined __aarch64__ # include "tdep-aarch64/jmpbuf.h" -#if defined __arm__ +#elif defined __arm__ # include "tdep-arm/jmpbuf.h" #elif defined __hppa__ # include "tdep-hppa/jmpbuf.h"