dexonsmith updated this revision to Diff 341966. dexonsmith edited the summary of this revision. dexonsmith added a comment.
Rebased on top of https://reviews.llvm.org/D101506 -- that updates all in-tree users, and now this is just removing the API. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D101506/new/ https://reviews.llvm.org/D101506 Files: llvm/include/llvm/Support/FileSystem.h Index: llvm/include/llvm/Support/FileSystem.h =================================================================== --- llvm/include/llvm/Support/FileSystem.h +++ llvm/include/llvm/Support/FileSystem.h @@ -755,12 +755,10 @@ enum OpenFlags : unsigned { OF_None = 0, - F_None = 0, // For compatibility /// The file should be opened in text mode on platforms like z/OS that make /// this distinction. OF_Text = 1, - F_Text = 1, // For compatibility /// The file should use a carriage linefeed '\r\n'. This flag should only be /// used with OF_Text. Only makes a difference on Windows. @@ -773,7 +771,6 @@ /// The file should be opened in append mode. OF_Append = 4, - F_Append = 4, // For compatibility /// Delete the file on close. Only makes a difference on windows. OF_Delete = 8,
Index: llvm/include/llvm/Support/FileSystem.h =================================================================== --- llvm/include/llvm/Support/FileSystem.h +++ llvm/include/llvm/Support/FileSystem.h @@ -755,12 +755,10 @@ enum OpenFlags : unsigned { OF_None = 0, - F_None = 0, // For compatibility /// The file should be opened in text mode on platforms like z/OS that make /// this distinction. OF_Text = 1, - F_Text = 1, // For compatibility /// The file should use a carriage linefeed '\r\n'. This flag should only be /// used with OF_Text. Only makes a difference on Windows. @@ -773,7 +771,6 @@ /// The file should be opened in append mode. OF_Append = 4, - F_Append = 4, // For compatibility /// Delete the file on close. Only makes a difference on windows. OF_Delete = 8,
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits