Changeset 102449 in vbox
- Timestamp:
- Dec 4, 2023 1:10:31 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/armv8.h
r102447 r102449 3028 3028 DECL_FORCE_INLINE(uint32_t) Armv8A64MkInstrSxtb(uint32_t iRegResult, uint32_t iRegSrc, bool f64Bit = true) 3029 3029 { 3030 return Armv8A64MkInstrSbfm( 0,iRegResult, iRegSrc, 0, 7, f64Bit);3030 return Armv8A64MkInstrSbfm(iRegResult, iRegSrc, 0, 7, f64Bit); 3031 3031 } 3032 3032 … … 3036 3036 DECL_FORCE_INLINE(uint32_t) Armv8A64MkInstrSxth(uint32_t iRegResult, uint32_t iRegSrc, bool f64Bit = true) 3037 3037 { 3038 return Armv8A64MkInstrSbfm( 0,iRegResult, iRegSrc, 0, 15, f64Bit);3038 return Armv8A64MkInstrSbfm(iRegResult, iRegSrc, 0, 15, f64Bit); 3039 3039 } 3040 3040 … … 3044 3044 DECL_FORCE_INLINE(uint32_t) Armv8A64MkInstrSxtw(uint32_t iRegResult, uint32_t iRegSrc) 3045 3045 { 3046 return Armv8A64MkInstrSbfm( 0,iRegResult, iRegSrc, 0, 31, true /*f64Bit*/);3046 return Armv8A64MkInstrSbfm(iRegResult, iRegSrc, 0, 31, true /*f64Bit*/); 3047 3047 } 3048 3048
Note:
See TracChangeset
for help on using the changeset viewer.