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
{{ message }}
This repository has been archived by the owner on Sep 2, 2018. It is now read-only.
Recently, I upgrade my clang...
But when compiling, a error interrupt the compiling... i.e. ordered comparison between pointer and zero
hmmm, after searching the source code... I found this belongs to a new feature..
I do not find any place to prove that it can not be disabled...
Based on the source code, I think I do not find the flag to do this job...?
The text was updated successfully, but these errors were encountered:
here, Clang 4.0 really has been installed..
my real question is happening during the usage.. Like:
If ( ptr != 0) , clang will give u an error: ordered comparison between pointer and zero...
But Old clang did not report this issue.. I look into the source code ..this feature is added after Oct.2016.. And SemaExpr.cpp(including the implement)
tells me that using debugger-support can skip this checking...
Hmmm, so I try using Clang -fdebugger-support.. tool tells me that... this options is not recogonized...
Recently, I upgrade my clang...
But when compiling, a error interrupt the compiling...
i.e. ordered comparison between pointer and zero
hmmm, after searching the source code... I found this belongs to a new feature..
I do not find any place to prove that it can not be disabled...
Based on the source code, I think I do not find the flag to do this job...?
The text was updated successfully, but these errors were encountered: