[前][次][番号順一覧][スレッド一覧]

ruby-changes:68838

From: Maxime <ko1@a...>
Date: Thu, 21 Oct 2021 08:14:11 +0900 (JST)
Subject: [ruby-changes:68838] c6156e5113 (master): Fix trailing spaces

https://git.ruby-lang.org/ruby.git/commit/?id=c6156e5113

From c6156e511338450db2f39abc45e1ee1b5508bd6b Mon Sep 17 00:00:00 2001
From: Maxime Chevalier-Boisvert <maxime.chevalierboisvert@s...>
Date: Wed, 10 Mar 2021 11:18:17 -0500
Subject: Fix trailing spaces

---
 yjit_codegen.c | 2 +-
 yjit_core.c    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/yjit_codegen.c b/yjit_codegen.c
index 0877517850..3ece2b9fe8 100644
--- a/yjit_codegen.c
+++ b/yjit_codegen.c
@@ -1027,7 +1027,7 @@ gen_branchif(jitstate_t* jit, ctx_t* ctx) https://github.com/ruby/ruby/blob/trunk/yjit_codegen.c#L1027
     return YJIT_END_BLOCK;
 }
 
-void 
+void
 gen_branchunless_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
 {
     switch (shape)
diff --git a/yjit_core.c b/yjit_core.c
index 307b28f64d..4640853d57 100644
--- a/yjit_core.c
+++ b/yjit_core.c
@@ -473,9 +473,9 @@ uint8_t* get_branch_target( https://github.com/ruby/ruby/blob/trunk/yjit_core.c#L473
 
 void gen_branch(
     const ctx_t* src_ctx,
-    blockid_t target0, 
+    blockid_t target0,
     const ctx_t* ctx0,
-    blockid_t target1, 
+    blockid_t target1,
     const ctx_t* ctx1,
     branchgen_fn gen_fn
 )
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]