evas/evas_op_add_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267478, 1267480, 1267482, 1267486
This commit is contained in:
Stefan Schmidt 2015-06-09 10:18:02 +02:00
parent 0da6dbb159
commit 9434c0992c
1 changed files with 0 additions and 4 deletions

View File

@ -136,7 +136,6 @@ add_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_add_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -229,7 +228,6 @@ add_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_add_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -360,7 +358,6 @@ add_rel_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_add_rel_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -453,7 +450,6 @@ add_rel_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_add_rel_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}