summaryrefslogtreecommitdiffstats
path: root/tests/compute/groupshared.slang.expected.txt
Commit message (Collapse)AuthorAge
* Fix output of `groupshared` with IR type system (#492)Tim Foley2018-04-18
The basic problem was that the lowering logic was constructing (more or less) `Ptr<@GroupShared X>` instead of `@GroupShared Ptr<X>`. There were also problems with passes not propagating through rates that should have been (e.g., legalization). I've added a test case to actually validate `groupshared` support.