diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-08 19:03:11 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-08 19:03:11 +0000 |
commit | 98a030c4680b984a06abf79273873295c7634cd7 (patch) | |
tree | c0cd9dc96ae315a65dddf8c85b6b1c4418b2d669 /tools/llvm-ld | |
parent | 7f04c0867e129acc809ba4ae04edc57f31e261de (diff) | |
download | external_llvm-98a030c4680b984a06abf79273873295c7634cd7.zip external_llvm-98a030c4680b984a06abf79273873295c7634cd7.tar.gz external_llvm-98a030c4680b984a06abf79273873295c7634cd7.tar.bz2 |
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.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index 6ec0ce7..8fb335c 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. |