We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f418981 commit 38e2950Copy full SHA for 38e2950
libc/src/setjmp/x86_64/setjmp.cpp
@@ -6,6 +6,12 @@
6
//
7
//===----------------------------------------------------------------------===//
8
9
+// We use naked functions to avoid compiler-generated prologue and epilogue.
10
+// Despite GCC document list this as an supported case for extended asm, the
11
+// generated code is not wrong as we only pass in constant operands to
12
+// extended asm.
13
+// See https://github.com/llvm/llvm-project/issues/137055 for related remarks.
14
+
15
#include "hdr/offsetof_macros.h"
16
#include "src/__support/common.h"
17
#include "src/__support/macros/config.h"
0 commit comments