Cthulhu  0.2.10
Cthulhu compiler collection
operand.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "common.h"
4 
6 {
7  ssa_operand_t operand = {
8  .kind = eOperandImm,
9  .value = value
10  };
11  return operand;
12 }
ssa_operand_t operand_value(ssa_value_t *value)
Definition: operand.c:5
ssa_opkind_t kind
Definition: ssa.h:192