1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Supress MSVC padding warning in alignment test

llvm-svn: 233305
This commit is contained in:
Andrew Kaylor 2015-03-26 18:48:42 +00:00
parent 7faf81c793
commit 03a14c9479

View 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"