add_input_file and add_input_library now take const arguments, remove the
authorRafael Espindola <rafael.espindola@gmail.com>
Mon, 21 Jun 2010 02:23:12 +0000 (02:23 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Mon, 21 Jun 2010 02:23:12 +0000 (02:23 +0000)
const_cast.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106410 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gold/gold-plugin.cpp

index c8542b1752019a932ae4108e21a108ae346265b2..15ad405c6ac6a7d1ee9e56fdf77af042c06f06bd 100644 (file)
@@ -439,7 +439,7 @@ static ld_plugin_status all_symbols_read_hook(void) {
 
   lto_codegen_dispose(cg);
 
-  if ((*add_input_file)(const_cast<char*>(uniqueObjPath.c_str())) != LDPS_OK) {
+  if ((*add_input_file)(uniqueObjPath.c_str()) != LDPS_OK) {
     (*message)(LDPL_ERROR, "Unable to add .o file to the link.");
     (*message)(LDPL_ERROR, "File left behind in: %s", uniqueObjPath.c_str());
     return LDPS_ERR;
@@ -449,7 +449,7 @@ static ld_plugin_status all_symbols_read_hook(void) {
                                           e = options::pass_through.end();
        i != e; ++i) {
     std::string &item = *i;
-    char *item_p = const_cast<char*>(item.c_str());
+    const char *item_p = item.c_str();
     if (llvm::StringRef(item).startswith("-l")) {
       if (add_input_library(item_p + 2) != LDPS_OK) {
         (*message)(LDPL_ERROR, "Unable to add library to the link.");