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 36e73e4 commit a4ce870Copy full SHA for a4ce870
clang/lib/AST/Interp/ByteCodeEmitter.cpp
@@ -22,6 +22,11 @@
22
using namespace clang;
23
using namespace clang::interp;
24
25
+/// Unevaluated builtins don't get their arguments put on the stack
26
+/// automatically. They instead operate on the AST of their Call
27
+/// Expression.
28
+/// Similar information is available via ASTContext::BuiltinInfo,
29
+/// but that is not correct for our use cases.
30
static bool isUnevaluatedBuiltin(unsigned BuiltinID) {
31
return BuiltinID == Builtin::BI__builtin_classify_type;
32
}
0 commit comments