Impact: clean up of branch check
The unlikely/likely profiler does an extra assign of the f.line.
This is not needed since it is already calculated at compile time.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
                                .file = __FILE__,                       \
                                .line = __LINE__,                       \
                        };                                              \
-                       ______f.line = __LINE__;                        \
                        ______r = likely_notrace(x);                    \
                        ftrace_likely_update(&______f, ______r, 1);     \
                        ______r;                                        \
                                .file = __FILE__,                       \
                                .line = __LINE__,                       \
                        };                                              \
-                       ______f.line = __LINE__;                        \
                        ______r = unlikely_notrace(x);                  \
                        ftrace_likely_update(&______f, ______r, 0);     \
                        ______r;                                        \