Tagged Questions

7
votes
3answers
219 views

How to tell a C or a C++ compiler that pointers are not aliased

I have function that receives an array of pointers like so: void foo(int *ptrs[], int num, int size) { /* The body is an example only */ for (int i = 0; i < size; ++i) { for (int ...
6
votes
4answers
100 views

Prevent two object internals from aliasing

I have a function signature similiar to this void Mutliply(const MatrixMN& a, const MatrixMN& b, MatrixMN& out); Internally the matrix class has a float* data; that represents the m x n ...
2
votes
2answers
222 views

restrict-edness with pre-c99

Considering this code, VC9 doesn't detect aliasing : typedef struct { int x, y; } vec_t; void rotate_cw(vec_t const *from, vec_t *to) { /* Notice x depends on y and vice ...