Remove the optimization that depends on ENDIAN_LITTLE: it's not worth it.
authorChris Lattner <sabre@nondot.org>
Thu, 15 Jan 2004 06:11:30 +0000 (06:11 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 15 Jan 2004 06:11:30 +0000 (06:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10870 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/WriterPrimitives.h

index e5079e8bb945ae6cbc619e9e3cf43ff39b66897c..5bb01665185d72a3ea52e945cdb671faf83723cd 100644 (file)
@@ -27,13 +27,6 @@ namespace llvm {
 //
 static inline void output(unsigned i, std::deque<unsigned char> &Out,
                           int pos = -1) {
-#ifdef ENDIAN_LITTLE
-  if (pos == -1) 
-    Out.insert(Out.end(), (unsigned char*)&i, (unsigned char*)&i+4);
-  else
-    // This cannot use block copy because deques are not guaranteed contiguous!
-    std::copy((unsigned char*)&i, 4+(unsigned char*)&i, Out.begin()+pos);
-#else
   if (pos == -1) { // Be endian clean, little endian is our friend
     Out.push_back((unsigned char)i); 
     Out.push_back((unsigned char)(i >> 8));
@@ -45,7 +38,6 @@ static inline void output(unsigned i, std::deque<unsigned char> &Out,
     Out[pos+2] = (unsigned char)(i >> 16);
     Out[pos+3] = (unsigned char)(i >> 24);
   }
-#endif
 }
 
 static inline void output(int i, std::deque<unsigned char> &Out) {