We were writing the length of the string based on system-endianness, and
not universally little-endian. This fixes that.
Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 7204 Build 7204: arc lint + arc unit
Event Timeline
Comment Actions
Yes, write{16,32,64}le is usually much more convenient than casting to ulittle{16,32,64}_t.
llvm/lib/Object/WindowsResource.cpp | ||
---|---|---|
694–696 | Don't you want to make this a reference? You are making a copy of a vector. |
Comment Actions
You can do it in a single-line follow-up patch. It is actually more preferable than doing it in an unrelated patch.
Don't you want to make this a reference? You are making a copy of a vector.