From: Yaron Keren Date: Wed, 22 Apr 2015 05:06:57 +0000 (+0000) Subject: Revert r235219, it's not needed after r235450. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cfe24ac62fc36343978231b3efa74bc504d72823;p=oota-llvm.git Revert r235219, it's not needed after r235450. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235480 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/AlignOf.h b/include/llvm/Support/AlignOf.h index 4e0a899fbbe..061d5acf232 100644 --- a/include/llvm/Support/AlignOf.h +++ b/include/llvm/Support/AlignOf.h @@ -22,11 +22,6 @@ namespace llvm { template struct AlignmentCalcImpl { char x; -#if defined(_MSC_VER) -// Disables "structure was padded due to __declspec(align())" warnings that are -// generated by any class using AlignOf with a manually specified alignment. -#pragma warning(suppress : 4324) -#endif T t; private: AlignmentCalcImpl() {} // Never instantiate.