================

----------------
AaronBallman wrote:

I'd also like to see some additional tests like:
```
volatile int v1, v2;

x = v1 + v2; // Okay, accessing different values

volatile int *pv1 = v1, *pv2 = v1; // Pointing to same volatile object
x = *pv1 + *pv2; // unsequenced, but might be a FIXME if we're not tracking 
pointer ownership
```

https://github.com/llvm/llvm-project/pull/180955
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to