search for: use_size

Displaying 2 results from an estimated 2 matches for "use_size".

Did you mean: used_size
2004 Dec 14
0
[LLVMdev] misc. patches
...+ include/llvm/Value.h 6 Dec 2004 11:24:02 -0000 > @@ -89,8 +89,9 @@ > // > typedef UseListIteratorWrapper use_iterator; > typedef UseListConstIteratorWrapper use_const_iterator; > + typedef iplist<Use>::size_type size_type; > > - unsigned use_size() const { return Uses.size(); } > + size_type use_size() const { return Uses.size(); } > bool use_empty() const { return Uses.empty(); } > use_iterator use_begin() { return Uses.begin(); } > use_const_iterator use_begin() const { return U...
2004 Dec 13
6
[LLVMdev] misc. patches
Hi, here are some minor patches that for various reasons I've not submitted yet - I'm just trying to clear my list of differences before christmas... First of all the clear.patch file contains a patch that enables the JIT to drop all global mappings. I need this because when I have N threads I compile N different versions of my functions using different memory areas for global