[PATCH] D52191: Fix logic around determining use of frame pointer with -pg.
Stephen Hines via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 18 11:38:16 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL342501: Fix logic around determining use of frame pointer with -pg. (authored by srhines, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D52191
Files:
cfe/trunk/lib/Driver/ToolChains/Clang.cpp
Index: cfe/trunk/lib/Driver/ToolChains/Clang.cpp
===================================================================
--- cfe/trunk/lib/Driver/ToolChains/Clang.cpp
+++ cfe/trunk/lib/Driver/ToolChains/Clang.cpp
@@ -4956,8 +4956,7 @@
}
if (Arg *A = Args.getLastArg(options::OPT_pg))
- if (Args.hasFlag(options::OPT_fomit_frame_pointer,
- options::OPT_fno_omit_frame_pointer, /*default=*/false))
+ if (shouldUseFramePointer(Args, Triple))
D.Diag(diag::err_drv_argument_not_allowed_with) << "-fomit-frame-pointer"
<< A->getAsString(Args);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52191.166008.patch
Type: text/x-patch
Size: 632 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180918/4a27bea6/attachment.bin>
More information about the llvm-commits
mailing list