stage1: fix gcc 9.1.0 compiler error on archlinux

This commit is contained in:
Michael Dusan 2019-09-19 21:48:20 -04:00 committed by Andrew Kelley
parent e81156b873
commit d60f9d0d4b

View File

@ -12,6 +12,11 @@
//
//===----------------------------------------------------------------------===//
#if __GNUC__ >= 9
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Winit-list-lifetime"
#endif
#include "clang/Basic/Stack.h"
#include "clang/Basic/TargetOptions.h"
#include "clang/CodeGen/ObjectFilePCHContainerOperations.h"