diff options
author | Heejin Ahn <aheejin@gmail.com> | 2017-12-02 02:05:50 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2017-12-02 02:05:50 +0000 |
commit | 675147b54d98da5a52344de6b04fef96aa9a7e90 (patch) | |
tree | 02f1413b692c5c89bf2613c793f6048bfb4d3720 /lld/wasm/Symbols.h | |
parent | e74a864cec4bf4db666a6547a32be7076e1406bf (diff) | |
download | bcm5719-llvm-675147b54d98da5a52344de6b04fef96aa9a7e90.tar.gz bcm5719-llvm-675147b54d98da5a52344de6b04fef96aa9a7e90.zip |
[WebAssembly] Revert r319592 "Add support for visibility flag"
r319488 reportedly broke one of LLVM bots (ubuntu-gcc7.1-werror), and this patch
depends on that patch.
See http://lab.llvm.org:8011/builders/ubuntu-gcc7.1-werror/builds/3369 for
details.
llvm-svn: 319603
Diffstat (limited to 'lld/wasm/Symbols.h')
-rw-r--r-- | lld/wasm/Symbols.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lld/wasm/Symbols.h b/lld/wasm/Symbols.h index 8e0e6d503b0..29fbdf4b34c 100644 --- a/lld/wasm/Symbols.h +++ b/lld/wasm/Symbols.h @@ -58,7 +58,6 @@ public: bool isGlobal() const { return !isFunction(); } bool isLocal() const { return IsLocal; } bool isWeak() const; - bool isHidden() const; // Returns the symbol name. StringRef getName() const { return Name; } |