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 448e8f0 commit ea219feCopy full SHA for ea219fe
lib/Builtins.cpp
@@ -28,6 +28,9 @@ using namespace clspv;
28
//// Convert Builtin function name to a Type enum
29
////////////////////////////////////////////////////////////////////////////////
30
Builtins::BuiltinType Builtins::LookupBuiltinType(const std::string &name) {
31
+ if (name.starts_with("__clc_convert_") || name.starts_with("convert_")) {
32
+ return Builtins::kConvert;
33
+ }
34
35
// Build static map of builtin function names
36
#include "BuiltinsMap.inc"
0 commit comments