reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/MC/MCSymbolWasm.h
   42   bool isFunction() const { return Type == wasm::WASM_SYMBOL_TYPE_FUNCTION; }
   43   bool isData() const { return Type == wasm::WASM_SYMBOL_TYPE_DATA; }
   44   bool isGlobal() const { return Type == wasm::WASM_SYMBOL_TYPE_GLOBAL; }
   45   bool isSection() const { return Type == wasm::WASM_SYMBOL_TYPE_SECTION; }
   46   bool isEvent() const { return Type == wasm::WASM_SYMBOL_TYPE_EVENT; }
   47   wasm::WasmSymbolType getType() const { return Type; }
   48   void setType(wasm::WasmSymbolType type) { Type = type; }