Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JIT] Cleanup to lsra inspired by #73424 #76481

Merged
merged 8 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions src/coreclr/jit/jitstd/list.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ class list
bool operator==(const const_iterator& it) const;
bool operator!=(const const_iterator& it) const;
const T& operator*() const;
const T* operator&() const;
const T* operator->() const;
operator const T*() const;

Expand All @@ -85,7 +84,6 @@ class list
bool operator==(const iterator& it);
bool operator!=(const iterator& it);
T& operator*();
T* operator&();
T* operator->();
operator T*();

Expand Down Expand Up @@ -115,7 +113,6 @@ class list
bool operator==(const const_reverse_iterator& it) const;
bool operator!=(const const_reverse_iterator& it) const;
const T& operator*() const;
const T* operator&() const;
const T* operator->() const;
operator const T*() const;

Expand All @@ -142,7 +139,6 @@ class list
bool operator==(const reverse_iterator& it);
bool operator!=(const reverse_iterator& it);
T& operator*();
T* operator&();
T* operator->();
operator T*();
friend class list<T, Allocator>::const_reverse_iterator;
Expand Down Expand Up @@ -970,12 +966,6 @@ T& list<T, Allocator>::iterator::operator*()
return m_pNode->m_value;
}

template <typename T, typename Allocator>
T* list<T, Allocator>::iterator::operator&()
{
return &(m_pNode->m_value);
}

template <typename T, typename Allocator>
T* list<T, Allocator>::iterator::operator->()
{
Expand Down Expand Up @@ -1062,12 +1052,6 @@ const T& list<T, Allocator>::const_iterator::operator*() const
return m_pNode->m_value;
}

template <typename T, typename Allocator>
const T* list<T, Allocator>::const_iterator::operator&() const
{
return &(m_pNode->m_value);
}

template <typename T, typename Allocator>
const T* list<T, Allocator>::const_iterator::operator->() const
{
Expand Down Expand Up @@ -1147,12 +1131,6 @@ T& list<T, Allocator>::reverse_iterator::operator*()
return m_pNode->m_value;
}

template <typename T, typename Allocator>
T* list<T, Allocator>::reverse_iterator::operator&()
{
return &(m_pNode->m_value);
}

template <typename T, typename Allocator>
T* list<T, Allocator>::reverse_iterator::operator->()
{
Expand Down Expand Up @@ -1236,12 +1214,6 @@ const T& list<T, Allocator>::const_reverse_iterator::operator*() const
return m_pNode->m_value;
}

template <typename T, typename Allocator>
const T* list<T, Allocator>::const_reverse_iterator::operator&() const
{
return &(m_pNode->m_value);
}

template <typename T, typename Allocator>
const T* list<T, Allocator>::const_reverse_iterator::operator->() const
{
Expand Down
Loading