summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/DebugInfo
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2017-03-01 05:11:37 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2017-03-01 05:11:37 +0000
commit4913a7921e806955e6655df77835d32b012b9056 (patch)
tree3d1014eaa306ba654f056c765d8d436bddfea8d0 /llvm/unittests/DebugInfo
parent623ab91b5366e5a27a52db3576edb69fce87f1af (diff)
downloadbcm5719-llvm-4913a7921e806955e6655df77835d32b012b9056.tar.gz
bcm5719-llvm-4913a7921e806955e6655df77835d32b012b9056.zip
Revert r296581, "PDB/BinaryStreamTest.cpp: Appease mingw to avoid std::errc::no_buffer_space."
Wrong commit -- I have unstaged changes. llvm-svn: 296582
Diffstat (limited to 'llvm/unittests/DebugInfo')
-rw-r--r--llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp
index 6e99069fd67..5c22a4afa92 100644
--- a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp
+++ b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp
@@ -56,7 +56,7 @@ public:
Error readBytes(uint32_t Offset, uint32_t Size,
ArrayRef<uint8_t> &Buffer) override {
if (Offset + Size > Data.size())
- return errorCodeToError(make_error_code(std::errc::function_not_supported));
+ return errorCodeToError(make_error_code(std::errc::no_buffer_space));
uint32_t S = startIndex(Offset);
auto Ref = Data.drop_front(S);
if (Ref.size() >= Size) {
@@ -75,7 +75,7 @@ public:
Error readLongestContiguousChunk(uint32_t Offset,
ArrayRef<uint8_t> &Buffer) override {
if (Offset >= Data.size())
- return errorCodeToError(make_error_code(std::errc::function_not_supported));
+ return errorCodeToError(make_error_code(std::errc::no_buffer_space));
uint32_t S = startIndex(Offset);
Buffer = Data.drop_front(S);
return Error::success();
@@ -85,7 +85,7 @@ public:
Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> SrcData) override {
if (Offset + SrcData.size() > Data.size())
- return errorCodeToError(make_error_code(std::errc::function_not_supported));
+ return errorCodeToError(make_error_code(std::errc::no_buffer_space));
if (SrcData.empty())
return Error::success();
OpenPOWER on IntegriCloud