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

Reid Spencer reid at x10sys.com
Sat Nov 11 11:59:42 PST 2006



Changes in directory llvm/tools/llvm-ld:

llvm-ld.cpp updated: 1.41 -> 1.42
---
Log message:

Minor style fixes from review.


---
Diffs of the changes:  (+3 -3)

 llvm-ld.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/tools/llvm-ld/llvm-ld.cpp
diff -u llvm/tools/llvm-ld/llvm-ld.cpp:1.41 llvm/tools/llvm-ld/llvm-ld.cpp:1.42
--- llvm/tools/llvm-ld/llvm-ld.cpp:1.41	Sat Nov 11 05:54:25 2006
+++ llvm/tools/llvm-ld/llvm-ld.cpp	Sat Nov 11 13:59:25 2006
@@ -326,10 +326,10 @@
   for (unsigned index = 0; index < LinkItems.size(); index++)
     if (LinkItems[index].first != "crtend") {
       if (LinkItems[index].second) {
-	std::string lib_name = "-l" + LinkItems[index].first;
-	args.push_back(lib_name.c_str());
+        std::string lib_name = "-l" + LinkItems[index].first;
+        args.push_back(lib_name.c_str());
       } else
-	args.push_back(LinkItems[index].first.c_str());
+        args.push_back(LinkItems[index].first.c_str());
     }
 
   args.push_back(0);






More information about the llvm-commits mailing list