From c8434e3d71105e2e908c7b07fc190a74c6b2ddf0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 15 Jan 2004 06:11:30 +0000 Subject: [PATCH] Remove the optimization that depends on ENDIAN_LITTLE: it's not worth it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10870 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Bytecode/Writer/WriterPrimitives.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/Bytecode/Writer/WriterPrimitives.h b/lib/Bytecode/Writer/WriterPrimitives.h index e5079e8bb94..5bb01665185 100644 --- a/lib/Bytecode/Writer/WriterPrimitives.h +++ b/lib/Bytecode/Writer/WriterPrimitives.h @@ -27,13 +27,6 @@ namespace llvm { // static inline void output(unsigned i, std::deque &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 &Out, Out[pos+2] = (unsigned char)(i >> 16); Out[pos+3] = (unsigned char)(i >> 24); } -#endif } static inline void output(int i, std::deque &Out) { -- 2.34.1