mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-23 15:29:51 +00:00
8 lines
226 B
C++
8 lines
226 B
C++
|
// 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;
|
||
|
}
|