Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[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;