[Lldb-commits] [PATCH] D30515: Made GetClangTargetCPU() const.

2017-03-03 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL296868: Made GetClangTargetCPU() const. (authored by labath). Changed prior to commit: https://reviews.llvm.org/D30515?vs=90255&id=90467#toc Repository: rL LLVM https://reviews.llvm.org/D30515 Files

Re: [Lldb-commits] [PATCH] D30515: Made GetClangTargetCPU() const.

2017-03-01 Thread Zachary Turner via lldb-commits
lgtm On Wed, Mar 1, 2017 at 4:26 PM Jason Majors via Phabricator via lldb-commits wrote: > jmajors created this revision. > > It does not change members or call non-const members. > HostInfo::GetArchitecture() returns a const object ref (maybe others?), > which can't access the non-const functio

[Lldb-commits] [PATCH] D30515: Made GetClangTargetCPU() const.

2017-03-01 Thread Jason Majors via Phabricator via lldb-commits
jmajors created this revision. It does not change members or call non-const members. HostInfo::GetArchitecture() returns a const object ref (maybe others?), which can't access the non-const function. https://reviews.llvm.org/D30515 Files: include/lldb/Core/ArchSpec.h source/Core/ArchSpec.cp