Remove patch from a different fix approach I was looking at and

erroneously committed.
This commit is contained in:
kmos 2022-07-21 17:35:58 +00:00
parent 76979e1714
commit a65a65e00f
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
This optimization breaks for ports-gcc. Patch it out.
Index: json_object.c
--- json_object.c.orig
+++ json_object.c
@@ -145,10 +145,7 @@ static json_object_to_json_string_fn _json_object_user
#elif defined(__OS400__)
#define JSON_NORETURN
#else
-/* 'cold' attribute is for optimization, telling the computer this code
- * path is unlikely.
- */
-#define JSON_NORETURN __attribute__((noreturn, cold))
+#define JSON_NORETURN __attribute__((noreturn))
#endif
#endif
/**