[libc][Obvious] Remove a compile opt to x86_64 longjmp in a previous commit.
authorSiva Chandra Reddy <sivachandra@google.com>
Fri, 24 Mar 2023 20:24:57 +0000 (20:24 +0000)
committerSiva Chandra Reddy <sivachandra@google.com>
Fri, 24 Mar 2023 20:51:45 +0000 (20:51 +0000)
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

index 141d120..9899c00 100644 (file)
@@ -21,5 +21,5 @@ add_entrypoint_object(
     libc.include.setjmp
   COMPILE_OPTIONS
     -O3
-    -fno-omit-frame-pointer
+    -fomit-frame-pointer
 )