From 9b512e355f65a5a11bc3ec0d68ada130f46268f9 Mon Sep 17 00:00:00 2001 From: Andrew Kaylor Date: Thu, 26 Mar 2015 18:48:42 +0000 Subject: [PATCH] Supress MSVC padding warning in alignment test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233305 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/AlignOfTest.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/unittests/Support/AlignOfTest.cpp b/unittests/Support/AlignOfTest.cpp index 1119019de01..d2090867e26 100644 --- a/unittests/Support/AlignOfTest.cpp +++ b/unittests/Support/AlignOfTest.cpp @@ -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" -- 2.34.1