[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / CodeGenCXX / 2007-07-29-RestrictRefArg.cpp
blobaa9f48bb0abc600ab2fd7cfe3f423532e27fc28f
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
3 void foo(int & __restrict myptr1, int & myptr2) {
4 // CHECK: noalias
5 myptr1 = 0;
6 myptr2 = 0;