summaryrefslogtreecommitdiff
path: root/tools/llvm-ld
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-08 19:03:11 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-08 19:03:11 +0000
commit98a030c4680b984a06abf79273873295c7634cd7 (patch)
treec0cd9dc96ae315a65dddf8c85b6b1c4418b2d669 /tools/llvm-ld
parent7f04c0867e129acc809ba4ae04edc57f31e261de (diff)
downloadllvm-98a030c4680b984a06abf79273873295c7634cd7.tar.gz
llvm-98a030c4680b984a06abf79273873295c7634cd7.tar.bz2
llvm-98a030c4680b984a06abf79273873295c7634cd7.tar.xz
For PR1153:
Copy a couple more missing options from gccld to llvm-ld. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld')
-rw-r--r--tools/llvm-ld/llvm-ld.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp
index 6ec0ce7591..8fb335ca4b 100644
--- a/tools/llvm-ld/llvm-ld.cpp
+++ b/tools/llvm-ld/llvm-ld.cpp
@@ -97,6 +97,11 @@ static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
static cl::opt<std::string> CO6("h", cl::Hidden,
cl::desc("Compatibility option: ignored"));
+static cl::opt<bool> CO7("start-group", cl::Hidden,
+ cl::desc("Compatibility option: ignored"));
+
+static cl::opt<bool> CO8("end-group", cl::Hidden,
+ cl::desc("Compatibility option: ignored"));
/// This is just for convenience so it doesn't have to be passed around
/// everywhere.