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 24998ffCopy full SHA for 24998ff
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.find("__clc_convert_") == 0 || name.find("convert_") == 0) {
32
+ return Builtins::kConvert;
33
+ }
34
35
// Build static map of builtin function names
36
#include "BuiltinsMap.inc"
0 commit comments