diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:30:54 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:30:54 +0000 |
| commit | b2d0fa08230d98b55d83b6771f9ab894b6b15ce1 (patch) | |
| tree | d68d2bc739910a85ecc84dfbfe41b31e7a550699 /llvm/tools/opt/opt.cpp | |
| parent | 34fae46c8762f3444692bfcf631606bcdfe112a3 (diff) | |
| download | bcm5719-llvm-b2d0fa08230d98b55d83b6771f9ab894b6b15ce1.tar.gz bcm5719-llvm-b2d0fa08230d98b55d83b6771f9ab894b6b15ce1.zip | |
Fix usage of changed function prototype
llvm-svn: 17798
Diffstat (limited to 'llvm/tools/opt/opt.cpp')
| -rw-r--r-- | llvm/tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 12c354736c2..dcc3666ca1c 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -111,7 +111,7 @@ int main(int argc, char **argv) { // Make sure that the Output file gets unlinked from the disk if we get a // SIGINT - sys::RemoveFileOnSignal(OutputFilename); + sys::RemoveFileOnSignal(sys::Path(OutputFilename)); } // If the output is set to be emitted to standard out, and standard out is a |

