mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
52025af1da
Summary: Provide an iterator to simplify iteration over some isl collections. Since these types do not natively support iteration, they have to be converted to an list first by the caller, but can then be used in a ranged for loop: ``` isl::set S; for (auto SubSet : S.get_basic_set_list ()) { // ... } ``` Reviewers: bollu, Meinersbur, grosser, dexonsmith Reviewed By: bollu Subscribers: hfinkel, mgorny, Meinersbur, mehdi_amini, bollu, steven_wu, llvm-commits Differential Revision: https://reviews.llvm.org/D48136 llvm-svn: 335951
4 lines
52 B
CMake
4 lines
52 B
CMake
add_polly_unittest(ISLToolsTests
|
|
ISLTools.cpp
|
|
)
|