From 9fee241122fdf0d8747f0922741bb1cae0c1c53a Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Fri, 24 Mar 2023 20:24:57 +0000 Subject: [PATCH] [libc][Obvious] Remove a compile opt to x86_64 longjmp in a previous commit. The option -fno-omit-frame-pointer was accidentally added to the x86_64 longjmp target. This change not only removes it, but makes it -fomit-frame-pointer. --- libc/src/setjmp/x86_64/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/src/setjmp/x86_64/CMakeLists.txt b/libc/src/setjmp/x86_64/CMakeLists.txt index 141d120..9899c00 100644 --- a/libc/src/setjmp/x86_64/CMakeLists.txt +++ b/libc/src/setjmp/x86_64/CMakeLists.txt @@ -21,5 +21,5 @@ add_entrypoint_object( libc.include.setjmp COMPILE_OPTIONS -O3 - -fno-omit-frame-pointer + -fomit-frame-pointer ) -- 2.7.4