Displaying 2 results from an estimated 2 matches for "iterend".
Did you mean:
berend
2009 Aug 24
1
[LLVMdev] Regular Expression lib support
On Aug 23, 2009, at 9:50 PM, OvermindDL1 wrote:
> On Sun, Aug 23, 2009 at 10:20 PM, Chris Lattner<clattner at apple.com>
> wrote:
>> On Aug 23, 2009, at 9:11 PM, OvermindDL1 wrote:
>>>>
>>>> Again, forget boost regex. :)
>>>
>>> What about std::regex?
>>
>> No, we have to build with c++'98 compilers. I think you're
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...\
> + } \
> +}
> +
> +#define INVALIDSCCNUM -1
> +#define INVALIDREGNUM 0
> +
> +template<class LoopinfoT>
> +void PrintLoopinfo(const LoopinfoT &LoopInfo, llvm::raw_ostream &OS) {
> + for (typename LoopinfoT::iterator iter = LoopInfo.begin(),
> + iterEnd = LoopInfo.end();
> + iter != iterEnd; ++iter) {
> + (*iter)->print(OS, 0);
> + }
> +}
> +
> +template<class NodeT>
> +void ReverseVector(SmallVector<NodeT *, DEFAULT_VEC_SLOTS> &Src) {
> + size_t sz = Src.size();
> + for (size_t i = 0; i &l...