We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef58cd commit 0cc7ba7Copy full SHA for 0cc7ba7
sycl/tools/syclbin-dump/syclbin-dump.cpp
@@ -63,19 +63,6 @@ std::string_view StateToString(llvm::object::SYCLBIN::BundleState State) {
63
}
64
65
66
-std::string_view IRTypeToString(llvm::object::SYCLBIN::IRType IRType) {
67
- switch (IRType) {
68
- case llvm::object::SYCLBIN::IRType::SPIRV:
69
- return "SPIR-V";
70
- case llvm::object::SYCLBIN::IRType::PTX:
71
- return "PTX";
72
- case llvm::object::SYCLBIN::IRType::AMDGCN:
73
- return "AMDGCN";
74
- default:
75
- return "UNKNOWN";
76
- }
77
-}
78
-
79
std::string PropertyValueToString(const llvm::util::PropertyValue &PropVal) {
80
switch (PropVal.getType()) {
81
case llvm::util::PropertyValue::UINT32:
0 commit comments