Ignore warnings in VS from llvm headers

This commit is contained in:
Danila Malyutin 2015-08-15 02:35:36 +03:00 committed by Nekotekina
parent 83b77ced9e
commit aeee0758c2
3 changed files with 18 additions and 0 deletions

View file

@ -5,6 +5,9 @@
#include "Emu/Cell/PPUDisAsm.h"
#include "Emu/Cell/PPULLVMRecompiler.h"
#include "Emu/Memory/Memory.h"
#ifdef _MSC_VER
#pragma warning(push, 0)
#endif
#include "llvm/Support/TargetSelect.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/ManagedStatic.h"
@ -22,6 +25,9 @@
#include "llvm/Transforms/Vectorize.h"
#include "llvm/MC/MCDisassembler.h"
#include "llvm/IR/Verifier.h"
#ifdef _MSC_VER
#pragma warning(pop)
#endif
using namespace llvm;
using namespace ppu_recompiler_llvm;