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
126
ir_loop *
new_loop
= new(mem_ctx) ir_loop();
local
129
new_loop
->from = this->from->clone(mem_ctx, ht);
131
new_loop
->to = this->to->clone(mem_ctx, ht);
133
new_loop
->increment = this->increment->clone(mem_ctx, ht);
134
new_loop
->counter = counter;
138
new_loop
->body_instructions.push_tail(ir->clone(mem_ctx, ht));
141
new_loop
->cmp = this->cmp;
142
return
new_loop
;
Completed in 600 milliseconds