[llvm-commits] [llvm] r59642 - /llvm/trunk/tools/llvm-ld/llvm-ld.cpp
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Wed Nov 19 09:00:09 PST 2008
Author: alenhar2
Date: Wed Nov 19 11:00:08 2008
New Revision: 59642
URL: http://llvm.org/viewvc/llvm-project?rev=59642&view=rev
Log:
ignore the -m elf_i386 directive used in the linux kernel
Modified:
llvm/trunk/tools/llvm-ld/llvm-ld.cpp
Modified: llvm/trunk/tools/llvm-ld/llvm-ld.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-ld/llvm-ld.cpp?rev=59642&r1=59641&r2=59642&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-ld/llvm-ld.cpp (original)
+++ llvm/trunk/tools/llvm-ld/llvm-ld.cpp Wed Nov 19 11:00:08 2008
@@ -108,6 +108,9 @@
static cl::opt<bool> CO8("end-group", cl::Hidden,
cl::desc("Compatibility option: ignored"));
+static cl::opt<std::string> CO9("m", cl::Hidden,
+ cl::desc("Compatibility option: ignored"));
+
/// This is just for convenience so it doesn't have to be passed around
/// everywhere.
static std::string progname;
More information about the llvm-commits
mailing list