diff options
author | Eric Fiselier <eric@efcs.ca> | 2019-08-21 00:16:33 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2019-08-21 00:16:33 +0000 |
commit | 5b5929501139c7cc7168d55bc8c989183c7d1aed (patch) | |
tree | 90c6eee08e146b3ff711aa84be16245228415c7f /libcxx/src | |
parent | a6edef35639bb6314b7d69cf874a87aa5bbb89bb (diff) | |
download | bcm5719-llvm-5b5929501139c7cc7168d55bc8c989183c7d1aed.tar.gz bcm5719-llvm-5b5929501139c7cc7168d55bc8c989183c7d1aed.zip |
Fix missing __muloti4 function with UBSAN
llvm-svn: 369483
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/filesystem/int128_builtins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/filesystem/int128_builtins.cpp b/libcxx/src/filesystem/int128_builtins.cpp index a55540fe276..ed531ee145a 100644 --- a/libcxx/src/filesystem/int128_builtins.cpp +++ b/libcxx/src/filesystem/int128_builtins.cpp @@ -18,7 +18,7 @@ #if !defined(_LIBCPP_HAS_NO_INT128) -extern "C" __attribute__((no_sanitize("undefined"))) +extern "C" __attribute__((no_sanitize("undefined"))) _LIBCPP_FUNC_VIS __int128_t __muloti4(__int128_t a, __int128_t b, int* overflow) { const int N = (int)(sizeof(__int128_t) * CHAR_BIT); const __int128_t MIN = (__int128_t)1 << (N - 1); |