blob: 0dd35fc84fa454e1857b7af58323a36f7d05bac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// slang-ir-composite-reg-to-mem.h
#pragma once
namespace Slang
{
struct IRModule;
struct IRCall;
struct IRInst;
struct IRFunc;
/// Convert parameters of composite type into pointers and modify the callsites accordingly.
void convertCompositeTypeParametersToPointers(IRModule* module);
} // namespace Slang
|