]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/comp.c (emit_setjmp): Aesthetic, respect 80 columns limit.
authorAndrea Corallo <akrl@sdf.org>
Wed, 20 May 2020 19:24:41 +0000 (20:24 +0100)
committerAndrea Corallo <akrl@sdf.org>
Wed, 20 May 2020 19:30:48 +0000 (20:30 +0100)
src/comp.c

index 3fa3361bbf2222dbbd988dbd69d9d3cad3fa7281..86a9721108c81d9ee601f37caf986b4b9a9b133c 100644 (file)
@@ -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);