diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-05 08:00:27 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-05 08:00:27 +0000 |
commit | b31b8d631a00c52b0337b32e431ca2d5c1ee2b47 (patch) | |
tree | 0816b7f6a96d2045e1f30245c60c1021f6d917bf /os | |
parent | 65ee20cd8c369fc3b82151cde6ab514465abb414 (diff) | |
download | ChibiOS-b31b8d631a00c52b0337b32e431ca2d5c1ee2b47.tar.gz ChibiOS-b31b8d631a00c52b0337b32e431ca2d5c1ee2b47.tar.bz2 ChibiOS-b31b8d631a00c52b0337b32e431ca2d5c1ee2b47.zip |
Fixed small problem in unhandled exceptions handler.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11434 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/vectors.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/common/startup/ARMCMx/compilers/GCC/vectors.S b/os/common/startup/ARMCMx/compilers/GCC/vectors.S index 5fc019b6c..598385c2a 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/vectors.S +++ b/os/common/startup/ARMCMx/compilers/GCC/vectors.S @@ -769,7 +769,8 @@ Vector3FC: .thumb_func
.weak _unhandled_exception
_unhandled_exception:
- b _unhandled_exception
+.stay:
+ b .stay
#endif /* !defined(__DOXYGEN__) */
|