This change bumps for version number of the wasm object file
metadata.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lld/trunk/wasm/OutputSegment.h | ||
---|---|---|
29 | Looks like one of our internal windows builders is failing due to this change: c:\buildagent\work\7a156dd62df26211\opencl\drivers\opencl\compiler\llvm\tools\lld\wasm\OutputSegment.h(29): error C2220: warning treated as error - no 'object' file generated c:\buildagent\work\7a156dd62df26211\opencl\drivers\opencl\compiler\llvm\tools\lld\wasm\OutputSegment.h(29): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) Perhaps it should be 1ULL , not 1 ? |
Comment Actions
One more:
lld/trunk/wasm/Writer.cpp:694
MemoryPtr = alignTo(MemoryPtr, 1 << Seg->Alignment);
1 -> 1ULL
Looks like one of our internal windows builders is failing due to this change:
c:\buildagent\work\7a156dd62df26211\opencl\drivers\opencl\compiler\llvm\tools\lld\wasm\OutputSegment.h(29): error C2220: warning treated as error - no 'object' file generated
[00:38:36][Step 2/4]
c:\buildagent\work\7a156dd62df26211\opencl\drivers\opencl\compiler\llvm\tools\lld\wasm\OutputSegment.h(29): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
Perhaps it should be 1ULL , not 1 ?
Trying to get onto our windows builder to test this.
Thanks.