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 bf0534e commit 22b6b8dCopy full SHA for 22b6b8d
clang/lib/AST/Interp/Function.h
@@ -15,8 +15,8 @@
15
#ifndef LLVM_CLANG_AST_INTERP_FUNCTION_H
16
#define LLVM_CLANG_AST_INTERP_FUNCTION_H
17
18
-#include "Pointer.h"
19
#include "Source.h"
+#include "Descriptor.h"
20
#include "clang/AST/ASTLambda.h"
21
#include "clang/AST/Decl.h"
22
#include "llvm/Support/raw_ostream.h"
@@ -25,6 +25,7 @@ namespace clang {
25
namespace interp {
26
class Program;
27
class ByteCodeEmitter;
28
+class Pointer;
29
enum PrimType : uint32_t;
30
31
/// Describes a scope block.
clang/lib/AST/Interp/InterpStack.cpp
@@ -10,6 +10,7 @@
10
#include "Boolean.h"
11
#include "Floating.h"
12
#include "Integral.h"
13
+#include "Pointer.h"
14
#include <cassert>
#include <cstdlib>
0 commit comments