@@ -86,8 +86,8 @@ inline const u8 *GetShadowTypeAddrFor(const u8 *Ptr) {
86
86
template <typename FT> struct FTInfo {};
87
87
template <> struct FTInfo <float > {
88
88
using orig_type = float ;
89
- using orig_bits_type = __sanitizer:: u32 ;
90
- using mantissa_bits_type = __sanitizer:: u32 ;
89
+ using orig_bits_type = u32 ;
90
+ using mantissa_bits_type = u32 ;
91
91
using shadow_type = double ;
92
92
static const char *kCppTypeName ;
93
93
static constexpr unsigned kMantissaBits = 23 ;
@@ -104,8 +104,8 @@ template <> struct FTInfo<float> {
104
104
};
105
105
template <> struct FTInfo <double > {
106
106
using orig_type = double ;
107
- using orig_bits_type = __sanitizer:: u64 ;
108
- using mantissa_bits_type = __sanitizer:: u64 ;
107
+ using orig_bits_type = u64 ;
108
+ using mantissa_bits_type = u64 ;
109
109
using shadow_type = __float128;
110
110
static const char *kCppTypeName ;
111
111
static constexpr unsigned kMantissaBits = 52 ;
@@ -126,7 +126,7 @@ template <> struct FTInfo<double> {
126
126
};
127
127
template <> struct FTInfo <long double > {
128
128
using orig_type = long double ;
129
- using mantissa_bits_type = __sanitizer:: u64 ;
129
+ using mantissa_bits_type = u64 ;
130
130
using shadow_type = __float128;
131
131
static const char *kCppTypeName ;
132
132
static constexpr unsigned kMantissaBits = 63 ;
0 commit comments