gallivm: Fix build since llvm-3.7.0svn r234460.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89963
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
This commit is contained in:
Vinson Lee 2015-04-08 22:51:57 -07:00
parent a873b79fa5
commit 50e9fa2ed6

View file

@ -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);