lkml.org 
[lkml]   [2022]   [Jul]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] tools: Change the division operator to a right shift operator
Date
Change the division operator to a right shift operator,Reduced assembly
code.

Signed-off-by: Lv qian <lvqian@nfschina.com>
---
tools/testing/selftests/size/get_size.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/size/get_size.c b/tools/testing/selftests/size/get_size.c
index 2980b1a63366..b1e34408f8c6 100644
--- a/tools/testing/selftests/size/get_size.c
+++ b/tools/testing/selftests/size/get_size.c
@@ -73,7 +73,7 @@ static int print_k_value(const char *s, unsigned long num, unsigned long units)
print(s);

temp = num;
- temp = (temp * units)/1024;
+ temp = (temp * units)>>10;
num = temp;
ccode = print_num(num);
print("\n");
--
2.18.2
\
 
 \ /
  Last update: 2022-07-19 04:00    [W:1.511 / U:0.036 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site