mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
[WebAssembly] Remove redundant namespaces qualifiers. NFC.
Differential Revision: https://reviews.llvm.org/D57610 llvm-svn: 353060
This commit is contained in:
parent
7230ae9ced
commit
0301813285
@ -309,13 +309,13 @@ enum class ValType {
|
||||
};
|
||||
|
||||
struct WasmSignature {
|
||||
SmallVector<wasm::ValType, 1> Returns;
|
||||
SmallVector<wasm::ValType, 4> Params;
|
||||
SmallVector<ValType, 1> Returns;
|
||||
SmallVector<ValType, 4> Params;
|
||||
// Support empty and tombstone instances, needed by DenseMap.
|
||||
enum { Plain, Empty, Tombstone } State = Plain;
|
||||
|
||||
WasmSignature(SmallVector<wasm::ValType, 1> &&InReturns,
|
||||
SmallVector<wasm::ValType, 4> &&InParams)
|
||||
WasmSignature(SmallVector<ValType, 1> &&InReturns,
|
||||
SmallVector<ValType, 4> &&InParams)
|
||||
: Returns(InReturns), Params(InParams) {}
|
||||
WasmSignature() = default;
|
||||
};
|
||||
@ -338,7 +338,7 @@ inline bool operator!=(const WasmGlobalType &LHS, const WasmGlobalType &RHS) {
|
||||
return !(LHS == RHS);
|
||||
}
|
||||
|
||||
std::string toString(wasm::WasmSymbolType type);
|
||||
std::string toString(WasmSymbolType type);
|
||||
std::string relocTypetoString(uint32_t type);
|
||||
|
||||
} // end namespace wasm
|
||||
|
Loading…
Reference in New Issue
Block a user