mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Supressed warning: declared ‘static’ but never defined.
llvm-svn: 305403
This commit is contained in:
parent
01aea025a5
commit
c49b4d60a1
@ -20,9 +20,20 @@
|
||||
#include "llvm/IR/Module.h"
|
||||
#include "llvm/IR/PassManager.h"
|
||||
#include "llvm/Support/SourceMgr.h"
|
||||
|
||||
// Workaround for the gcc 7.1 bug PR80916.
|
||||
#if defined(__GNUC__) && __GNUC__ > 6
|
||||
# pragma GCC diagnostic push
|
||||
# pragma GCC diagnostic ignored "-Wunused-function"
|
||||
#endif
|
||||
|
||||
#include "gmock/gmock.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ > 6
|
||||
# pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
|
Loading…
x
Reference in New Issue
Block a user