comparison libinterp/parse-tree/pt-eval.cc @ 30836:97504d2edcc7

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Thu, 17 Mar 2022 02:52:53 -0400
parents d31d4f2504de 2989202f92f8
children c9788d7f6e65
comparison
equal deleted inserted replaced
30832:d87406970676 30836:97504d2edcc7
3093 { 3093 {
3094 execute_range_loop (rhs.range_value (), line, ult, loop_body); 3094 execute_range_loop (rhs.range_value (), line, ult, loop_body);
3095 return; 3095 return;
3096 } 3096 }
3097 3097
3098 // For now, disable all but range<double>.
3099
3100 #if 0
3098 if (rhs.is_int64_type ()) 3101 if (rhs.is_int64_type ())
3099 { 3102 {
3100 execute_range_loop (rhs.int64_range_value (), line, ult, loop_body); 3103 execute_range_loop (rhs.int64_range_value (), line, ult, loop_body);
3101 return; 3104 return;
3102 } 3105 }
3146 if (rhs.is_single_type ()) 3149 if (rhs.is_single_type ())
3147 { 3150 {
3148 execute_range_loop (rhs.float_range_value (), line, ult, loop_body); 3151 execute_range_loop (rhs.float_range_value (), line, ult, loop_body);
3149 return; 3152 return;
3150 } 3153 }
3154 #endif
3151 } 3155 }
3152 3156
3153 if (rhs.is_scalar_type ()) 3157 if (rhs.is_scalar_type ())
3154 { 3158 {
3155 if (m_echo_state) 3159 if (m_echo_state)