Displaying 1 result from an estimated 1 matches for "uint32x4".
2016 Oct 13
2
Clang error to emit llvm code
...I am using the following command to obtain the LLVM IR representation of this program:
$ clang -fsyntax-only ./test/pixel-test.c -S -emit-llvm -o pixel-test.ll
However I get the following error:
./test/utils-prng.h:137:32: error: can't convert between vector values of different size ('uint32x4' and 'int')
uint32x4 e = x->a - ((x->b << 27) + (x->b >> (32 - 27)));
~~~~ ^ ~~
./test/utils-prng.h:137:47: error: can't convert between vector values of different size ('uint32x4' and 'int')
uint32x4 e = x->...