blob: 617f8b015571a318f08d3954ccca06f027b39d5e [file] [log] [blame]
dan sinclair367fad82023-06-19 12:58:53 +00001// Copyright 2023 The Tint Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "src/tint/ir/instruction_result.h"
16
17#include "src/tint/ir/constant.h"
18#include "src/tint/ir/instruction.h"
19
20TINT_INSTANTIATE_TYPEINFO(tint::ir::InstructionResult);
21
22namespace tint::ir {
23
dan sinclair0d80c3d2023-06-19 13:32:03 +000024InstructionResult::InstructionResult(const type::Type* type) : type_(type) {
25 TINT_ASSERT(IR, type_ != nullptr);
26}
dan sinclair367fad82023-06-19 12:58:53 +000027
28InstructionResult::~InstructionResult() = default;
29
30} // namespace tint::ir