diff options
author | Petr Hosek <phosek@chromium.org> | 2019-04-11 13:08:44 +0000 |
---|---|---|
committer | Petr Hosek <phosek@chromium.org> | 2019-04-11 13:08:44 +0000 |
commit | 3aeb6585d3e911eb130e997a072436e78a22061d (patch) | |
tree | 0b6128694d669831bc8e2cf9910d435489bbcc7d | |
parent | 4f5d2df48d57cf1f9f9aed3eac8337128f01f327 (diff) | |
download | bcm5719-llvm-3aeb6585d3e911eb130e997a072436e78a22061d.tar.gz bcm5719-llvm-3aeb6585d3e911eb130e997a072436e78a22061d.zip |
[libunwind] Fix the typo in unw_save_vfp_as_X alias
This was accidentaly introduced in r357640.
llvm-svn: 358164
-rw-r--r-- | libunwind/src/libunwind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libunwind/src/libunwind.cpp b/libunwind/src/libunwind.cpp index 5f99337333a..c90032bd66c 100644 --- a/libunwind/src/libunwind.cpp +++ b/libunwind/src/libunwind.cpp @@ -236,7 +236,7 @@ _LIBUNWIND_HIDDEN void __unw_save_vfp_as_X(unw_cursor_t *cursor) { AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; return co->saveVFPAsX(); } -_LIBUNWIND_WEAK_ALIAS(__unw_save_vfp_as_X, unw_save_cfp_as_X) +_LIBUNWIND_WEAK_ALIAS(__unw_save_vfp_as_X, unw_save_vfp_as_X) #endif |