diff options
author | Brian Paul <[email protected]> | 2010-05-27 14:55:58 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-27 14:55:58 -0600 |
commit | 3d41dd7934e6d2527424a1288d28128c20d9c5ce (patch) | |
tree | a8fad2dc43dda04bef09978d95a2a0e2fda396d3 | |
parent | bd024ce2b18c8086c6c557cfe9362eb7c954a724 (diff) |
llvmpipe: s/bool/boolean/
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_sincos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_sincos.c b/src/gallium/drivers/llvmpipe/lp_test_sincos.c index 386f852be0f..da16fea7bd5 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_sincos.c +++ b/src/gallium/drivers/llvmpipe/lp_test_sincos.c @@ -60,7 +60,7 @@ write_tsv_header(FILE *fp) typedef __m128 (*test_sincos_t)(__m128); static LLVMValueRef -add_sincos_test(LLVMModuleRef module, bool sin) +add_sincos_test(LLVMModuleRef module, boolean sin) { LLVMTypeRef v4sf = LLVMVectorType(LLVMFloatType(), 4); LLVMTypeRef args[1] = { v4sf }; @@ -185,7 +185,7 @@ test_sincos(unsigned verbose, FILE *fp) boolean test_all(unsigned verbose, FILE *fp) { - bool success = TRUE; + boolean success = TRUE; test_sincos(verbose, fp); |