projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b8db37
)
nir: Remove function overload in control flow test
author
Aaron Watry
<awatry@gmail.com>
Tue, 29 Dec 2015 16:51:54 +0000
(10:51 -0600)
committer
Jason Ekstrand
<jason.ekstrand@intel.com>
Tue, 29 Dec 2015 17:42:14 +0000
(09:42 -0800)
Fixes make check.
Signed-off-by: Aaron Watry <awatry@gmail.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
src/glsl/nir/tests/control_flow_tests.cpp
patch
|
blob
|
history
diff --git
a/src/glsl/nir/tests/control_flow_tests.cpp
b/src/glsl/nir/tests/control_flow_tests.cpp
index b9f90e66d1db32d9a109f37e2b6f23456d9bd716..f142e4434001e6afe6e02f216820ce4108566266 100644
(file)
--- a/
src/glsl/nir/tests/control_flow_tests.cpp
+++ b/
src/glsl/nir/tests/control_flow_tests.cpp
@@
-39,8
+39,7
@@
nir_cf_test::nir_cf_test()
static const nir_shader_compiler_options options = { };
shader = nir_shader_create(NULL, MESA_SHADER_VERTEX, &options);
nir_function *func = nir_function_create(shader, "main");
- nir_function_overload *overload = nir_function_overload_create(func);
- impl = nir_function_impl_create(overload);
+ impl = nir_function_impl_create(func);
nir_builder_init(&b, impl);
}