Re: [GSoC] replacing op in c_expr

2014-08-18 Thread Richard Biener
On Sat, Aug 16, 2014 at 3:46 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Mon, Aug 11, 2014 at 4:58 PM, Richard Biener richard.guent...@gmail.com wrote: On Sun, Aug 10, 2014 at 11:17 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Mon, Aug 4, 2014 at 2:13 PM,

Re: [GSoC] replacing op in c_expr

2014-08-16 Thread Prathamesh Kulkarni
On Mon, Aug 11, 2014 at 4:58 PM, Richard Biener richard.guent...@gmail.com wrote: On Sun, Aug 10, 2014 at 11:17 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Mon, Aug 4, 2014 at 2:13 PM, Richard Biener richard.guent...@gmail.com wrote: On Sun, Aug 3, 2014 at 6:58 PM,

Re: [GSoC] replacing op in c_expr

2014-08-11 Thread Richard Biener
On Sun, Aug 10, 2014 at 11:17 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Mon, Aug 4, 2014 at 2:13 PM, Richard Biener richard.guent...@gmail.com wrote: On Sun, Aug 3, 2014 at 6:58 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Tue, Jul 29, 2014 at 4:29 PM,

Re: [GSoC] replacing op in c_expr

2014-08-10 Thread Prathamesh Kulkarni
On Mon, Aug 4, 2014 at 2:13 PM, Richard Biener richard.guent...@gmail.com wrote: On Sun, Aug 3, 2014 at 6:58 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Tue, Jul 29, 2014 at 4:29 PM, Richard Biener richard.guent...@gmail.com wrote: On Mon, Jul 28, 2014 at 10:02 PM,

Re: [GSoC] replacing op in c_expr

2014-08-04 Thread Richard Biener
On Sun, Aug 3, 2014 at 6:58 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: On Tue, Jul 29, 2014 at 4:29 PM, Richard Biener richard.guent...@gmail.com wrote: On Mon, Jul 28, 2014 at 10:02 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: I am having few issues replacing op

Re: [GSoC] replacing op in c_expr

2014-08-03 Thread Prathamesh Kulkarni
On Tue, Jul 29, 2014 at 4:29 PM, Richard Biener richard.guent...@gmail.com wrote: On Mon, Jul 28, 2014 at 10:02 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: I am having few issues replacing op in c_expr. I thought of following possibilities: a) create a new veccpp_token vector

Re: [GSoC] replacing op in c_expr

2014-07-29 Thread Richard Biener
On Mon, Jul 28, 2014 at 10:02 PM, Prathamesh Kulkarni bilbotheelffri...@gmail.com wrote: I am having few issues replacing op in c_expr. I thought of following possibilities: a) create a new veccpp_token vector new_code. for each token in code { if token.type is not CPP_NAME

[GSoC] replacing op in c_expr

2014-07-28 Thread Prathamesh Kulkarni
I am having few issues replacing op in c_expr. I thought of following possibilities: a) create a new veccpp_token vector new_code. for each token in code { if token.type is not CPP_NAME new_code.safe_push (token); else { cpp_token new_token = ??? create