libunwind-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Libunwind-devel] [PATCH] Fix ARM jmpbuf header include bug.


From: Chris Redmon
Subject: [Libunwind-devel] [PATCH] Fix ARM jmpbuf header include bug.
Date: Wed, 15 Jun 2016 01:18:43 +0000

From: credmon <address@hidden>

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 4eae183..13093a0 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"
-- 
2.8.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]