blob: c2349a00768895bf6f0a360261ee509fad747cea [file] [log] [blame]
Fraser Cormack7d048672025-03-24 10:10:381//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
Peter Collingbourned5395fb2012-01-08 22:09:589__kernel void foo(int *i) {
10 i[get_group_id(0)] = 1;
11}