diff options
author | Roland Scheidegger <[email protected]> | 2014-05-16 01:00:53 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2014-05-16 22:50:14 +0200 |
commit | 26cac02c51db0f49f6c67d3cd029ce044a087473 (patch) | |
tree | 7b6d73ec23ee447239a30cf5385ff9ae6e0b8b42 /src/gallium/drivers/llvmpipe/lp_test_arit.c | |
parent | ef6b6658f91bd5871739bdb71a08042f26abe389 (diff) |
gallivm: give more verbose names to modules
When we had just one module "gallivm" was an appropriate name. But now we have
modules containing all functions for a particular variant, so give it a
corresponding name (this is really just for helping debugging).
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_test_arit.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_arit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_arit.c b/src/gallium/drivers/llvmpipe/lp_test_arit.c index f8998c159fb..bf405a54ae1 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_arit.c +++ b/src/gallium/drivers/llvmpipe/lp_test_arit.c @@ -354,7 +354,7 @@ test_unary(unsigned verbose, FILE *fp, const struct unary_test_t *test) in[i] = 1.0; } - gallivm = gallivm_create(); + gallivm = gallivm_create("test_module"); test_func = build_unary_test_func(gallivm, test); |