Fraser Cormack | 7d04867 | 2025-03-24 10:10:38 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 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 Collingbourne | d5395fb | 2012-01-08 22:09:58 | [diff] [blame] | 9 | __kernel void foo(int *i) { |
| 10 | i[get_group_id(0)] = 1; |
| 11 | } |