summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/Scalar.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [Scalar] Commit the correct patch, forgot `git add`.Davide Italiano2018-09-071-8/+8
| | | | | | <rdar://problem/44229924> llvm-svn: 341685
* [Scalar] Fix undefined behaviour when converting double to long.Davide Italiano2018-09-071-2/+7
| | | | | | | | | | | This showed up in an Ubsan build of lldb (inside the CFAbsoluteTime data formatter). As we only care about the bit pattern, we just round to the nearest double, and truncate to a size that fits in ulonglong_t. <rdar://problem/44229924> llvm-svn: 341682
* Remove commented out constructor from ScalarAlex Langford2018-08-161-43/+0
| | | | | | | This appears to have been commented out since the initial checkin of lldb. llvm-svn: 339965
* Move RegisterValue,Scalar,State from Core to UtilityPavel Labath2018-08-071-0/+2852
These three classes have no external dependencies, but they are used from various low-level APIs. Moving them down to Utility improves overall code layering (although it still does not break any particular dependency completely). The XCode project will need to be updated after this change. Differential Revision: https://reviews.llvm.org/D49740 llvm-svn: 339127
OpenPOWER on IntegriCloud