evas/evas_op_sub_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267476, 1267477, 1267479, 1267489
This commit is contained in:
Stefan Schmidt 2015-06-09 09:56:18 +02:00
parent 38f4201f6d
commit 85e5e9da5b
1 changed files with 0 additions and 4 deletions

View File

@ -137,7 +137,6 @@ sub_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_sub_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -230,7 +229,6 @@ sub_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_sub_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -361,7 +359,6 @@ sub_rel_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_sub_rel_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -454,7 +451,6 @@ sub_rel_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_sub_rel_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}