aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Petit <kevin.petit@arm.com>2024-02-29 17:46:38 +0000
committerGitHub <noreply@github.com>2024-02-29 17:46:38 +0000
commit75ad1345d4af5268448a9b26797294b48795cd69 (patch)
tree39f7d77d460d51619b5d9cca8a8022ef26966edd
parent9bd44d028e8ca257dde9c24d5f67adabee3275ab (diff)
downloadSPIRV-Tools-75ad1345d4af5268448a9b26797294b48795cd69.tar.gz
Remove redundant function declarations from source/operand.h (#5584)
Flagged by -Wredundant-decls I'm assuming the declarations in libspirv.h are part of the external interface and need to be kept. Change-Id: I6b138d3322a7a4ee49ee33b0fbcf0ca35dd92261 Signed-off-by: Kevin Petit <kevin.petit@arm.com>
-rw-r--r--source/operand.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/operand.h b/source/operand.h
index a3010d93..f74c9338 100644
--- a/source/operand.h
+++ b/source/operand.h
@@ -57,12 +57,6 @@ spv_result_t spvOperandTableValueLookup(spv_target_env,
// Gets the name string of the non-variable operand type.
const char* spvOperandTypeStr(spv_operand_type_t type);
-// Returns true if the given type is concrete.
-bool spvOperandIsConcrete(spv_operand_type_t type);
-
-// Returns true if the given type is concrete and also a mask.
-bool spvOperandIsConcreteMask(spv_operand_type_t type);
-
// Returns true if an operand of the given type is optional.
bool spvOperandIsOptional(spv_operand_type_t type);