about summary refs log tree commit diff
path: root/src/rustllvm/ArchiveWrapper.cpp
diff options
context:
space:
mode:
authorIrina Popa <irinagpopa@gmail.com>2018-05-29 20:41:36 +0300
committerIrina Popa <irinagpopa@gmail.com>2018-07-30 18:03:50 +0300
commit077be49bde25ca92dc03c86c805438609133a82a (patch)
treeafae5c5f1b8aab0a7a6bc3ef5ff1394154af20de /src/rustllvm/ArchiveWrapper.cpp
parent54628c8ea844956f3f4f416b82067c634eb09f7b (diff)
downloadrust-077be49bde25ca92dc03c86c805438609133a82a.tar.gz
rust-077be49bde25ca92dc03c86c805438609133a82a.zip
rustc_llvm: move to rustc_codegen_llvm::llvm.
Diffstat (limited to 'src/rustllvm/ArchiveWrapper.cpp')
-rw-r--r--src/rustllvm/ArchiveWrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustllvm/ArchiveWrapper.cpp b/src/rustllvm/ArchiveWrapper.cpp
index 93157cd6819..49a4962858c 100644
--- a/src/rustllvm/ArchiveWrapper.cpp
+++ b/src/rustllvm/ArchiveWrapper.cpp
@@ -148,7 +148,7 @@ LLVMRustArchiveChildName(LLVMRustArchiveChildConstRef Child, size_t *Size) {
 #if LLVM_VERSION_GE(4, 0)
   Expected<StringRef> NameOrErr = Child->getName();
   if (!NameOrErr) {
-    // rustc_llvm currently doesn't use this error string, but it might be
+    // rustc_codegen_llvm currently doesn't use this error string, but it might be
     // useful in the future, and in the mean time this tells LLVM that the
     // error was not ignored and that it shouldn't abort the process.
     LLVMRustSetLastError(toString(NameOrErr.takeError()).c_str());