Supress MSVC padding warning in alignment test
authorAndrew Kaylor <andrew.kaylor@intel.com>
Thu, 26 Mar 2015 18:48:42 +0000 (18:48 +0000)
committerAndrew Kaylor <andrew.kaylor@intel.com>
Thu, 26 Mar 2015 18:48:42 +0000 (18:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233305 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/AlignOfTest.cpp

index 1119019de012b6bbb751c2b9bf333fe4933df41c..d2090867e2639b1c6f2de896c4c3d1afecdd6b49 100644 (file)
@@ -7,6 +7,12 @@
 //
 //===----------------------------------------------------------------------===//
 
+#ifdef _MSC_VER
+// Disable warnings about alignment-based structure padding.
+// This must be above the includes to suppress warnings in included templates.
+#pragma warning(disable:4324)
+#endif
+
 #include "llvm/Support/AlignOf.h"
 #include "llvm/Support/Compiler.h"
 #include "gtest/gtest.h"