Fix Whitespace.
[oota-llvm.git] / include / llvm / Support / Allocator.h
index 148d47e785c7c6c2a2be3f4c770e989398a5638e..0b7151a72c18ad387202e441f175e84fe8eb52fb 100644 (file)
@@ -221,19 +221,17 @@ public:
 inline void *operator new(size_t Size, llvm::BumpPtrAllocator &Allocator) {
   struct S {
     char c;
-#ifdef __GNUC__
-    char x __attribute__((aligned));
-#else
     union {
       double D;
       long double LD;
       long long L;
       void *P;
     } x;
-#endif
   };
   return Allocator.Allocate(Size, std::min((size_t)llvm::NextPowerOf2(Size),
                                            offsetof(S, x)));
 }
 
+inline void operator delete(void *, llvm::BumpPtrAllocator &) {}
+
 #endif // LLVM_SUPPORT_ALLOCATOR_H