diff include/llvm/Support/FileOutputBuffer.h @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents afa8332a0e37
children 3a76565eade5
line wrap: on
line diff
--- a/include/llvm/Support/FileOutputBuffer.h	Fri Nov 25 19:14:25 2016 +0900
+++ b/include/llvm/Support/FileOutputBuffer.h	Fri Oct 27 17:07:41 2017 +0900
@@ -78,11 +78,12 @@
   FileOutputBuffer &operator=(const FileOutputBuffer &) = delete;
 
   FileOutputBuffer(std::unique_ptr<llvm::sys::fs::mapped_file_region> R,
-                   StringRef Path, StringRef TempPath);
+                   StringRef Path, StringRef TempPath, bool IsRegular);
 
   std::unique_ptr<llvm::sys::fs::mapped_file_region> Region;
   SmallString<128>    FinalPath;
   SmallString<128>    TempPath;
+  bool IsRegular;
 };
 } // end namespace llvm