[PATCH v1] bsps/aarch64: Fix 128bit q register print bug
Joel Sherrill
joel at rtems.org
Tue May 16 13:42:14 UTC 2023
Pushed.
On Tue, May 16, 2023 at 7:32 AM Kinsey Moore <kinsey.moore at oarcorp.com>
wrote:
> This change looks good. Thanks!
>
> On Mon, May 15, 2023 at 10:32 PM <tianye at sugon.com> wrote:
>
>> From: Tian Ye <tianye at sugon.com>
>>
>> ---
>> cpukit/score/cpu/aarch64/aarch64-exception-frame-print.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/cpukit/score/cpu/aarch64/aarch64-exception-frame-print.c
>> b/cpukit/score/cpu/aarch64/aarch64-exception-frame-print.c
>> index e207a5a81d..c5b477c72f 100644
>> --- a/cpukit/score/cpu/aarch64/aarch64-exception-frame-print.c
>> +++ b/cpukit/score/cpu/aarch64/aarch64-exception-frame-print.c
>> @@ -216,7 +216,7 @@ void _CPU_Exception_frame_print( const
>> CPU_Exception_frame *frame )
>>
>> for ( i = 0 ; i < 32 ; ++i ) {
>> uint64_t low = (uint64_t) qx[i];
>> - uint64_t high = (uint64_t) (qx[i] >> 32);
>> + uint64_t high = (uint64_t) (qx[i] >> 64);
>>
>> printk( "Q%02i = 0x%016" PRIx64 "%016" PRIx64 "\n", i, high, low );
>> }
>> --
>> 2.27.0
>>
>> _______________________________________________
>> devel mailing list
>> devel at rtems.org
>> http://lists.rtems.org/mailman/listinfo/devel
>>
> _______________________________________________
> devel mailing list
> devel at rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/devel/attachments/20230516/5c02e6a1/attachment.htm>
More information about the devel
mailing list