diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-08-28 06:47:47 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-08-28 06:47:47 +0000 |
commit | a1e97a77f592a0f8606bbb74b2576021e5110cd6 (patch) | |
tree | 38f81faa2af7096a8291bea708468f19b5db4135 /llvm/unittests | |
parent | 2c03e53f4e241bee2d1b3103931be556a346cc82 (diff) | |
download | bcm5719-llvm-a1e97a77f592a0f8606bbb74b2576021e5110cd6.tar.gz bcm5719-llvm-a1e97a77f592a0f8606bbb74b2576021e5110cd6.zip |
Untabify.
llvm-svn: 311875
Diffstat (limited to 'llvm/unittests')
-rw-r--r-- | llvm/unittests/ADT/APFloatTest.cpp | 2 | ||||
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 5 | ||||
-rw-r--r-- | llvm/unittests/Support/FileOutputBufferTest.cpp | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/llvm/unittests/ADT/APFloatTest.cpp b/llvm/unittests/ADT/APFloatTest.cpp index 9bd95a426bc..80da7195819 100644 --- a/llvm/unittests/ADT/APFloatTest.cpp +++ b/llvm/unittests/ADT/APFloatTest.cpp @@ -1464,7 +1464,7 @@ TEST(APFloatTest, getZero) { EXPECT_TRUE(test.bitwiseIsEqual(expected)); for (unsigned j = 0, je = GetZeroTest[i].bitPatternLength; j < je; ++j) { EXPECT_EQ(GetZeroTest[i].bitPattern[j], - test.bitcastToAPInt().getRawData()[j]); + test.bitcastToAPInt().getRawData()[j]); } } } diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index 155d10f5ccd..bc1ebc51b44 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -89,8 +89,9 @@ public: bool needsToReserveAllocationSpace() override { return true; } void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, - uintptr_t DataSizeRO, uint32_t RODataAlign, - uintptr_t DataSizeRW, uint32_t RWDataAlign) override { + uintptr_t DataSizeRO, uint32_t RODataAlign, + uintptr_t DataSizeRW, + uint32_t RWDataAlign) override { ReservedCodeSize = CodeSize; ReservedDataSizeRO = DataSizeRO; ReservedDataSizeRW = DataSizeRW; diff --git a/llvm/unittests/Support/FileOutputBufferTest.cpp b/llvm/unittests/Support/FileOutputBufferTest.cpp index 5f20634d66c..640af46844b 100644 --- a/llvm/unittests/Support/FileOutputBufferTest.cpp +++ b/llvm/unittests/Support/FileOutputBufferTest.cpp @@ -40,7 +40,7 @@ TEST(FileOutputBuffer, Test) { // TEST 1: Verify commit case. SmallString<128> File1(TestDirectory); - File1.append("/file1"); + File1.append("/file1"); { ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr = FileOutputBuffer::create(File1, 8192); @@ -79,7 +79,7 @@ TEST(FileOutputBuffer, Test) { // TEST 3: Verify sizing down case. SmallString<128> File3(TestDirectory); - File3.append("/file3"); + File3.append("/file3"); { ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr = FileOutputBuffer::create(File3, 8192000); @@ -100,7 +100,7 @@ TEST(FileOutputBuffer, Test) { // TEST 4: Verify file can be made executable. SmallString<128> File4(TestDirectory); - File4.append("/file4"); + File4.append("/file4"); { ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr = FileOutputBuffer::create(File4, 8192, FileOutputBuffer::F_executable); |