mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 15:39:06 +00:00
Be const correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10856 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7aa162b29b
commit
44e38034d5
@ -122,13 +122,13 @@ static inline void output(const std::string &s, std::deque<unsigned char> &Out,
|
|||||||
align32(Out); // Make sure we are now aligned...
|
align32(Out); // Make sure we are now aligned...
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void output_data(void *Ptr, void *End,
|
static inline void output_data(const void *Ptr, const void *End,
|
||||||
std::deque<unsigned char> &Out,
|
std::deque<unsigned char> &Out,
|
||||||
bool Align = false) {
|
bool Align = false) {
|
||||||
#ifdef ENDIAN_LITTLE
|
#ifdef ENDIAN_LITTLE
|
||||||
Out.insert(Out.end(), (unsigned char*)Ptr, (unsigned char*)End);
|
Out.insert(Out.end(), (const unsigned char*)Ptr, (const unsigned char*)End);
|
||||||
#else
|
#else
|
||||||
unsigned char *E = (unsigned char *)End;
|
const unsigned char *E = (const unsigned char *)End;
|
||||||
while (Ptr != E)
|
while (Ptr != E)
|
||||||
Out.push_back(*--E);
|
Out.push_back(*--E);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user