summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2015-07-20 11:24:13 -0400
committerTom Stellard <thomas.stellard@amd.com>2015-07-23 14:13:03 +0000
commita3b53beaa0351cf1322c6e1a580dc7cc3d0cad0c (patch)
tree55c211ed1922bed906b44b293d0e5ee90da4ec3e /src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
parent9f7a68feafc86a51a7c5165672b29cb7182da738 (diff)
downloadexternal_mesa3d-a3b53beaa0351cf1322c6e1a580dc7cc3d0cad0c.zip
external_mesa3d-a3b53beaa0351cf1322c6e1a580dc7cc3d0cad0c.tar.gz
external_mesa3d-a3b53beaa0351cf1322c6e1a580dc7cc3d0cad0c.tar.bz2
gallivm: Add ifdefs so raw_debug_stream is only defined when used
Its only use is to implement a custom version of LLVMDumpValue on some Windows and embedded platforms. Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_debug.cpp')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_debug.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
index ec88f33..0a5c2cc 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
@@ -61,6 +61,7 @@ lp_check_alignment(const void *ptr, unsigned alignment)
return ((uintptr_t)ptr & (alignment - 1)) == 0;
}
+#if (defined(PIPE_OS_WINDOWS) && !defined(PIPE_CC_MSVC)) || defined(PIPE_OS_EMBEDDED)
class raw_debug_ostream :
public llvm::raw_ostream
@@ -91,6 +92,7 @@ raw_debug_ostream::write_impl(const char *Ptr, size_t Size)
}
}
+#endif
extern "C" const char *
lp_get_module_id(LLVMModuleRef module)