We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following should not mark the (implicit) sized deallocation function "hidden", but it currently does.
$ echo 'void f(int *p) { delete p; }' | ./build/bin/clang -x c++ - -emit-llvm -S -o - -std=c++14 -fvisibility=hidden
[...]
; Function Attrs: nobuiltin nounwind ssp uwtable define linkonce hidden void @_ZdlPvm(i8*, i64) #1 { entry:
The text was updated successfully, but these errors were encountered:
Resolved by r228066.
Sorry, something went wrong.
No branches or pull requests
Extended Description
The following should not mark the (implicit) sized deallocation function "hidden", but it currently does.
$ echo 'void f(int *p) { delete p; }' | ./build/bin/clang -x c++ - -emit-llvm -S -o - -std=c++14 -fvisibility=hidden
Output:
[...]
; Function Attrs: nobuiltin nounwind ssp uwtable
define linkonce hidden void @_ZdlPvm(i8*, i64) #1 {
entry:
[...]
The text was updated successfully, but these errors were encountered: