brintos

brintos / llvm-project-archived public Read only

0
0
Text · 160 B · d7c96f5 Raw
8 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s2 3void foo(int * __restrict myptr1, int * myptr2) {4  // CHECK: noalias5  myptr1[0] = 0;6  myptr2[0] = 0;7}8