diff options
Diffstat (limited to 'llvm/lib/Support/Windows/PathV2.inc')
-rw-r--r-- | llvm/lib/Support/Windows/PathV2.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/PathV2.inc index 42a50fc0f94..6a1ea939141 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/PathV2.inc @@ -489,8 +489,7 @@ error_code unique_file(const Twine &model, int &result_fd, if (error_code ec = UTF8ToUTF16(m, model_utf16)) return ec; // Make model absolute by prepending a temp directory if it's not already. - bool absolute; - path::is_absolute(m, absolute); + bool absolute = path::is_absolute(m); if (!absolute) { SmallVector<wchar_t, 64> temp_dir; |