diff options
author | Siva Chandra Reddy <sivachandra@google.com> | 2023-03-24 20:24:57 +0000 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@google.com> | 2023-03-24 20:51:45 +0000 |
commit | 9fee241122fdf0d8747f0922741bb1cae0c1c53a (patch) | |
tree | c0389fbec8bca206629edc03cec8f5588da4c352 | |
parent | 7a74869a7221f9adc8814bda509193864886513b (diff) | |
download | llvm-9fee241122fdf0d8747f0922741bb1cae0c1c53a.zip llvm-9fee241122fdf0d8747f0922741bb1cae0c1c53a.tar.gz llvm-9fee241122fdf0d8747f0922741bb1cae0c1c53a.tar.bz2 |
[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.
-rw-r--r-- | libc/src/setjmp/x86_64/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) |