wenhu1024

Results 3 issues of wenhu1024

here is arr.c ```c int testArr(int a){ int nums[3]; nums[0]=a; return nums[0]; } ``` then i want to get mlir through cir ```bash ./bin/clang -cc1 -triple x86_64-unknown-linux-gnu -fclangir -fno-clangir-direct-lowering -emit-mlir...

related https://github.com/KhronosGroup/OpenCL-CTS/issues/2427

follow https://registry.khronos.org/OpenCL/sdk/3.0/docs/man/html/ ``` Conversions to floating-point type shall conform to IEEE-754 rounding rules. The _sat modifier may not be used for conversions to floating-point formats. ``` therefore, i think CustomConversionsTest...