emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp 72a96ed 2/3: * src/comp.c (emit_setjmp): Aesthetic,


From: Andrea Corallo
Subject: feature/native-comp 72a96ed 2/3: * src/comp.c (emit_setjmp): Aesthetic, respect 80 columns limit.
Date: Wed, 20 May 2020 15:45:17 -0400 (EDT)

branch: feature/native-comp
commit 72a96ed992bbc3ec446a974322dc8ba9dd94ce39
Author: Andrea Corallo <address@hidden>
Commit: Andrea Corallo <address@hidden>

    * src/comp.c (emit_setjmp): Aesthetic, respect 80 columns limit.
---
 src/comp.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/comp.c b/src/comp.c
index 3fa3361..86a9721 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -1510,13 +1510,16 @@ emit_setjmp (gcc_jit_rvalue *buf)
   /* _setjmp (buf, __builtin_frame_address (0)) */
   gcc_jit_rvalue *args[2];
 
-  args[0] = gcc_jit_context_new_rvalue_from_int (comp.ctxt, 
comp.unsigned_type, 0);
+  args[0] =
+    gcc_jit_context_new_rvalue_from_int (comp.ctxt, comp.unsigned_type, 0);
 
-  args[1] = gcc_jit_context_new_call (comp.ctxt,
-                                      NULL,
-                                      gcc_jit_context_get_builtin_function 
(comp.ctxt,
-                                        "__builtin_frame_address"),
-                                      1, args);
+  args[1] =
+    gcc_jit_context_new_call (
+      comp.ctxt,
+      NULL,
+      gcc_jit_context_get_builtin_function (comp.ctxt,
+                                           "__builtin_frame_address"),
+      1, args);
   args[0] = buf;
   return emit_call (intern_c_string (STR (SETJMP_NAME)), comp.int_type, 2, 
args,
                     false);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]