You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The code in the example below is problematic at runtime in only r26 version.
class Test {
public:
Test() {
m_data = nullptr;
}
...
mByte* m_data;
}
If I change the following, the problem disappears.
Modifying the code using initialization list. Like,
Test() : m_data(nullptr) {}
Changing the Optimization option level. Like,
APP_CFLAGS += -O1
APP_CPPFLAGS += -O1
APP_LDFLAGS := -O1
I would appreciate it if you could explain what difference between r25 and r26 causes this problem.
Beta Was this translation helpful? Give feedback.
All reactions