blob: 241a79041781f7ed9fe7f259d403a59e37a294cd [file] [log] [blame]
// RUN: %dragonegg -fno-builtin -O2 -S %s -o - | FileCheck %s
void foo(char *c, unsigned n) {
// CHECK-NOT: memset
while (n--)
*(c++) = 0;
}