mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 05:00:39 +00:00
Supress MSVC padding warning in alignment test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233305 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d6e2911a4f
commit
9b512e355f
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user