Go ahead and get rid of the old page size interface and convert all the

users over to the new one. No sense maintaining this "compatibility"
layer it seems.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171331 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2012-12-31 23:31:56 +00:00
parent 814afe91cc
commit f5867ab717
6 changed files with 12 additions and 26 deletions

View File

@ -21,7 +21,7 @@ class MappedMemoryTest : public ::testing::TestWithParam<unsigned> {
public:
MappedMemoryTest() {
Flags = GetParam();
PageSize = sys::Process::GetPageSize();
PageSize = sys::process::get_self()->page_size();
}
protected: