OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_loop
(Results
1 - 1
of
1
) sorted by null
/external/mesa3d/src/glsl/
ir_clone.cpp
148
ir_loop *
new_loop
= new(mem_ctx) ir_loop();
local
151
new_loop
->from = this->from->clone(mem_ctx, ht);
153
new_loop
->to = this->to->clone(mem_ctx, ht);
155
new_loop
->increment = this->increment->clone(mem_ctx, ht);
156
new_loop
->counter = counter;
160
new_loop
->body_instructions.push_tail(ir->clone(mem_ctx, ht));
163
new_loop
->cmp = this->cmp;
164
return
new_loop
;
Completed in 924 milliseconds