aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config/stormy16/lib2funcs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgcc/config/stormy16/lib2funcs.c')
-rw-r--r--libgcc/config/stormy16/lib2funcs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libgcc/config/stormy16/lib2funcs.c b/libgcc/config/stormy16/lib2funcs.c
index 4c56dc5..f4514d1 100644
--- a/libgcc/config/stormy16/lib2funcs.c
+++ b/libgcc/config/stormy16/lib2funcs.c
@@ -4,7 +4,7 @@
files. On this glorious day maybe this code can be integrated into
it too. */
-/* Copyright (C) 2005-2024 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2025 Free Software Foundation, Inc.
This file is part of GCC.
@@ -179,7 +179,7 @@ SItype
__ashlsi3 (SItype a, SItype b)
{
word_type i;
-
+
if (b & 16)
a <<= 16;
if (b & 8)
@@ -195,7 +195,7 @@ SItype
__ashrsi3 (SItype a, SItype b)
{
word_type i;
-
+
if (b & 16)
a >>= 16;
if (b & 8)
@@ -211,7 +211,7 @@ USItype
__lshrsi3 (USItype a, USItype b)
{
word_type i;
-
+
if (b & 16)
a >>= 16;
if (b & 8)