Thanks Jan. Reviewed-by: Aaron Watry <[email protected] Tested-by: Aaron Watry <[email protected]>
On Thu, Dec 13, 2018 at 3:17 PM Jan Vesely <[email protected]> wrote: > > CodeGenOptions were moved to Basic. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109039 > Signed-off-by: Jan Vesely <[email protected]> > --- > src/gallium/state_trackers/clover/llvm/compat.hpp | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/src/gallium/state_trackers/clover/llvm/compat.hpp > b/src/gallium/state_trackers/clover/llvm/compat.hpp > index 975012cbda..b91cb95a29 100644 > --- a/src/gallium/state_trackers/clover/llvm/compat.hpp > +++ b/src/gallium/state_trackers/clover/llvm/compat.hpp > @@ -58,9 +58,14 @@ > #include <llvm/Analysis/TargetLibraryInfo.h> > > #include <clang/Basic/TargetInfo.h> > -#include <clang/Frontend/CodeGenOptions.h> > #include <clang/Frontend/CompilerInstance.h> > > +#if HAVE_LLVM >= 0x0800 > +#include <clang/Basic/CodeGenOptions.h> > +#else > +#include <clang/Frontend/CodeGenOptions.h> > +#endif > + > namespace clover { > namespace llvm { > namespace compat { > -- > 2.19.2 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
