use uint32_t

llvm-svn: 320947
This commit is contained in:
Sam Clegg 2017-12-17 17:50:07 +00:00
parent c551522d25
commit b07a016ed1
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ struct WasmLocalDecl {
struct WasmFunction {
std::vector<WasmLocalDecl> Locals;
ArrayRef<uint8_t> Body;
size_t CodeSectionOffset;
size_t Size;
uint32_t CodeSectionOffset;
uint32_t Size;
};
struct WasmDataSegment {