[PATCH] D16580: [compiler-rt] list_union() is actually an intersect operation. Rename it.
Daniel Sanders via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 26 06:57:25 PST 2016
dsanders created this revision.
dsanders added a reviewer: beanz.
dsanders added a subscriber: llvm-commits.
Given:
set(T1 a b c)
set(T2 b c d)
message("T1=${T1}")
message("T2=${T2}")
list_union(T3 T1 T2)
message("T3=${T3}")
cmake emitted:
T1=a;b;c
T2=b;c;d
T3=b;c
http://reviews.llvm.org/D16580
Files:
cmake/Modules/AddCompilerRT.cmake
cmake/Modules/CompilerRTDarwinUtils.cmake
cmake/Modules/CompilerRTUtils.cmake
cmake/config-ix.cmake
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16580.45989.patch
Type: text/x-patch
Size: 4591 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160126/3c8e692e/attachment.bin>
More information about the llvm-commits
mailing list