mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 17:01:00 +08:00
[WebAssembly] Remove unused member variable. NFC.
Patch by Nicholas Wilson! llvm-svn: 322731
This commit is contained in:
@@ -39,7 +39,7 @@ public:
|
||||
};
|
||||
|
||||
Symbol(StringRef Name, uint32_t Flags)
|
||||
: WrittenToSymtab(0), WrittenToNameSec(0), Flags(Flags), Name(Name) {}
|
||||
: WrittenToNameSec(0), Flags(Flags), Name(Name) {}
|
||||
|
||||
Kind getKind() const { return SymbolKind; }
|
||||
|
||||
@@ -102,7 +102,6 @@ public:
|
||||
|
||||
// This bit is used by Writer::writeNameSection() to prevent
|
||||
// symbols from being written to the symbol table more than once.
|
||||
unsigned WrittenToSymtab : 1;
|
||||
unsigned WrittenToNameSec : 1;
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user