blob: 38da95ae6c8e3364776050063af18a413a222c2e (
plain)
1
2
3
4
5
6
7
|
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
// NOTE: This should be un-XFAILed when the C++ type qualifiers are fixed
void foo(int * __restrict myptr1, int * myptr2) {
myptr1[0] = 0;
myptr2[0] = 0;
}
|