brintos

brintos / llvm-project-archived public Read only

0
0
Text · 154 B · aa9f48b 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;6  myptr2 = 0;7}8