From: Vinson Lee Date: Thu, 9 Apr 2015 05:51:57 +0000 (-0700) Subject: gallivm: Fix build since llvm-3.7.0svn r234460. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50e9fa2ed69cb5f76f66231976ea789c0091a64d;p=mesa.git gallivm: Fix build since llvm-3.7.0svn r234460. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89963 Signed-off-by: Vinson Lee Reviewed-by: Tom Stellard --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index 65d289689f8..b71291562f7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -97,7 +97,11 @@ private: uint64_t pos; public: +#if HAVE_LLVM >= 0x0307 + raw_debug_ostream() : raw_ostream(SK_FD), pos(0) { } +#else raw_debug_ostream() : pos(0) { } +#endif void write_impl(const char *Ptr, size_t Size);