summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/BinaryFormat/Wasm.h
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-02-04 17:26:22 +0000
committerSam Clegg <sbc@chromium.org>2019-02-04 17:26:22 +0000
commitd00c02c0f9d42c6fc6dd4b53d6ffb79ff0aff811 (patch)
treef1d270bb62f0f6342c1f931d9399002878ba82a2 /llvm/include/llvm/BinaryFormat/Wasm.h
parent68d428e57894492a2ba9a650874b7f3a029ed93b (diff)
downloadbcm5719-llvm-d00c02c0f9d42c6fc6dd4b53d6ffb79ff0aff811.tar.gz
bcm5719-llvm-d00c02c0f9d42c6fc6dd4b53d6ffb79ff0aff811.zip
[WebAssembly] Remove redundant namespaces qualifiers. NFC.
Differential Revision: https://reviews.llvm.org/D57610 llvm-svn: 353060
Diffstat (limited to 'llvm/include/llvm/BinaryFormat/Wasm.h')
-rw-r--r--llvm/include/llvm/BinaryFormat/Wasm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/include/llvm/BinaryFormat/Wasm.h b/llvm/include/llvm/BinaryFormat/Wasm.h
index db33c09400a..84832766858 100644
--- a/llvm/include/llvm/BinaryFormat/Wasm.h
+++ b/llvm/include/llvm/BinaryFormat/Wasm.h
@@ -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
OpenPOWER on IntegriCloud