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 4b92e7f commit d124b44Copy full SHA for d124b44
include/linux/compiler-gcc.h
@@ -84,14 +84,8 @@
84
* to trace naked functions because then mcount is called without
85
* stack and frame pointer being set up and there is no chance to
86
* restore the lr register to the value before mcount was called.
87
- *
88
- * The asm() bodies of naked functions often depend on standard calling
89
- * conventions, therefore they must be noinline and noclone.
90
91
- * GCC 4.[56] currently fail to enforce this, so we must do so ourselves.
92
- * See GCC PR44290.
93
*/
94
-#define __naked __attribute__((naked)) noinline __noclone notrace
+#define __naked __attribute__((naked)) notrace
95
96
#define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__)
97
0 commit comments