diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
commit | 6f43bd4bde15873fe000e27575a54f5223637cf8 (patch) | |
tree | cdea2c9b17e7a0a44a0c44df12473c16351d0931 /llvm/unittests/Support/MemoryTest.cpp | |
parent | da8808bf91973db7840badac408f55cc38f267cb (diff) | |
download | bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.tar.gz bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.zip |
Untabify.
llvm-svn: 316079
Diffstat (limited to 'llvm/unittests/Support/MemoryTest.cpp')
-rw-r--r-- | llvm/unittests/Support/MemoryTest.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/unittests/Support/MemoryTest.cpp b/llvm/unittests/Support/MemoryTest.cpp index 140219ffd1d..650be7b6f1d 100644 --- a/llvm/unittests/Support/MemoryTest.cpp +++ b/llvm/unittests/Support/MemoryTest.cpp @@ -1,6 +1,6 @@ //===- llvm/unittest/Support/AllocatorTest.cpp - BumpPtrAllocator tests ---===// // -// The LLVM Compiler Infrastructure +// The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. @@ -350,16 +350,16 @@ TEST_P(MappedMemoryTest, UnalignedNear) { // Note that Memory::MF_WRITE is not supported exclusively across // operating systems and architectures and can imply MF_READ|MF_WRITE unsigned MemoryFlags[] = { - Memory::MF_READ, - Memory::MF_WRITE, - Memory::MF_READ|Memory::MF_WRITE, - Memory::MF_EXEC, - Memory::MF_READ|Memory::MF_EXEC, - Memory::MF_READ|Memory::MF_WRITE|Memory::MF_EXEC - }; + Memory::MF_READ, + Memory::MF_WRITE, + Memory::MF_READ|Memory::MF_WRITE, + Memory::MF_EXEC, + Memory::MF_READ|Memory::MF_EXEC, + Memory::MF_READ|Memory::MF_WRITE|Memory::MF_EXEC + }; INSTANTIATE_TEST_CASE_P(AllocationTests, - MappedMemoryTest, - ::testing::ValuesIn(MemoryFlags),); + MappedMemoryTest, + ::testing::ValuesIn(MemoryFlags),); } // anonymous namespace |