diff options
Diffstat (limited to 'tools/llvm-ld/llvm-ld.cpp')
-rw-r--r-- | tools/llvm-ld/llvm-ld.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index ccd643e173..23efb48cfa 100644 --- a/tools/llvm-ld/llvm-ld.cpp +++ b/tools/llvm-ld/llvm-ld.cpp @@ -480,7 +480,7 @@ int main(int argc, char **argv, char **envp) { gcc, envp); // Remove the assembly language file. - AssemblyFile.destroyFile(); + AssemblyFile.destroy(); } else if (NativeCBE) { sys::Path CFile (OutputFilename); CFile.appendSuffix("cbe.c"); @@ -505,7 +505,7 @@ int main(int argc, char **argv, char **envp) { GenerateNative(OutputFilename, CFile.toString(), Libraries, gcc, envp); // Remove the assembly language file. - CFile.destroyFile(); + CFile.destroy(); } else { EmitShellScript(argv); |