aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/ExprConstant.cpp
diff options
context:
space:
mode:
authorTimm Baeder <tbaeder@redhat.com>2024-08-16 17:13:12 +0200
committerGitHub <noreply@github.com>2024-08-16 17:13:12 +0200
commita07aba5d44204a7ca0d891a3da05af9960081e4c (patch)
tree4d9db6cdd747422115314ec633028e10ecf59074 /clang/lib/AST/ExprConstant.cpp
parentef6e7affbb7b0eb4976c1019c788bcadfc34ecd6 (diff)
downloadllvm-a07aba5d44204a7ca0d891a3da05af9960081e4c.zip
llvm-a07aba5d44204a7ca0d891a3da05af9960081e4c.tar.gz
llvm-a07aba5d44204a7ca0d891a3da05af9960081e4c.tar.bz2
[clang] Rename all AST/Interp stuff to AST/ByteCode (#104552)
"Interp" clashes with the clang interpreter and people often confuse this.
Diffstat (limited to 'clang/lib/AST/ExprConstant.cpp')
-rw-r--r--clang/lib/AST/ExprConstant.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp
index 09edbb6..7bfc63f 100644
--- a/clang/lib/AST/ExprConstant.cpp
+++ b/clang/lib/AST/ExprConstant.cpp
@@ -32,10 +32,10 @@
//
//===----------------------------------------------------------------------===//
+#include "ByteCode/Context.h"
+#include "ByteCode/Frame.h"
+#include "ByteCode/State.h"
#include "ExprConstShared.h"
-#include "Interp/Context.h"
-#include "Interp/Frame.h"
-#include "Interp/State.h"
#include "clang/AST/APValue.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTDiagnostic.h"