[PATCH] D145021: [Clang][AIX][p] Claim -p in front end
Michael Francis via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 1 08:44:20 PST 2023
francii updated this revision to Diff 501530.
francii added a comment.
Remove old test case
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145021/new/
https://reviews.llvm.org/D145021
Files:
clang/lib/Driver/ToolChains/Clang.cpp
clang/test/Driver/ibm-profiling.c
clang/test/Driver/zos-profiling-error.c
Index: clang/test/Driver/zos-profiling-error.c
===================================================================
--- clang/test/Driver/zos-profiling-error.c
+++ /dev/null
@@ -1,2 +0,0 @@
-// RUN: %clang 2>&1 -### --target=s390x-none-zos -pg -S %s | FileCheck -check-prefix=FAIL-PG-NAME %s
-// FAIL-PG-NAME: error: unsupported option '-pg' for target 's390x-none-zos'
Index: clang/test/Driver/ibm-profiling.c
===================================================================
--- /dev/null
+++ clang/test/Driver/ibm-profiling.c
@@ -0,0 +1,10 @@
+// RUN: %clang 2>&1 -### --target=s390x-none-zos -pg -S %s | FileCheck -check-prefix=FAIL-PG-NAME %s
+// FAIL-PG-NAME: error: unsupported option '-pg' for target 's390x-none-zos'
+
+// Check that -p is still used when not linking on AIX.
+// RUN: %clang %s -### 2>&1 \
+// RUN: -p \
+// RUN: -S \
+// RUN: --target=powerpc-ibm-aix7.1.0.0 \
+// RUN: | FileCheck --check-prefix=UNUSED %s
+// UNUSED-NOT: warning: argument unused during compilation: '-p'
Index: clang/lib/Driver/ToolChains/Clang.cpp
===================================================================
--- clang/lib/Driver/ToolChains/Clang.cpp
+++ clang/lib/Driver/ToolChains/Clang.cpp
@@ -6324,7 +6324,7 @@
<< A->getAsString(Args) << TripleStr;
}
}
- if (Arg *A = Args.getLastArgNoClaim(options::OPT_p)) {
+ if (Arg *A = Args.getLastArg(options::OPT_p)) {
if (TC.getTriple().isOSAIX()) {
CmdArgs.push_back("-pg");
} else if (!TC.getTriple().isOSOpenBSD()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145021.501530.patch
Type: text/x-patch
Size: 1533 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230301/9f5eed49/attachment.bin>
More information about the cfe-commits
mailing list