[llvm-commits] CVS: llvm/tools/llvm-ld/llvm-ld.cpp

Reid Spencer reid at x10sys.com
Thu Feb 8 11:03:27 PST 2007



Changes in directory llvm/tools/llvm-ld:

llvm-ld.cpp updated: 1.46 -> 1.47
---
Log message:

For PR1153: http://llvm.org/PR1153 :
Copy a couple more missing options from gccld to llvm-ld.


---
Diffs of the changes:  (+5 -0)

 llvm-ld.cpp |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/tools/llvm-ld/llvm-ld.cpp
diff -u llvm/tools/llvm-ld/llvm-ld.cpp:1.46 llvm/tools/llvm-ld/llvm-ld.cpp:1.47
--- llvm/tools/llvm-ld/llvm-ld.cpp:1.46	Sun Jan 21 00:33:59 2007
+++ llvm/tools/llvm-ld/llvm-ld.cpp	Thu Feb  8 13:03:11 2007
@@ -97,6 +97,11 @@
 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.






More information about the llvm-commits mailing list