summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcredmon <credmonster@gmail.com>2016-06-15 01:18:43 +0000
committerDave Watson <davejwatson@fb.com>2017-08-15 10:34:04 -0700
commitc4accd6ea2bd7893d44a2ffd253e972ab2c49099 (patch)
tree6961eb2ef1e243c6b19c5a29222abcc41b8abcef
parent022bb326a29ded6c11c4d836361ae2530c4cf22f (diff)
downloadlibunwind-c4accd6ea2bd7893d44a2ffd253e972ab2c49099.tar.gz
Fix ARM jmpbuf header include bug.
tdep/jmpbuf.h was not including arm-tdep/jmpbuf.h.
-rw-r--r--include/tdep/jmpbuf.h2
1 files changed, 1 insertions, 1 deletions
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"