diff options
author | Timm Baeder <tbaeder@redhat.com> | 2025-05-01 07:09:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-01 07:09:29 +0200 |
commit | 4acfd83ee492ba238c4082a5467a5a8e92d45102 (patch) | |
tree | 20e85eb96e68b56d2dabfbf39283f0a8c2480b44 /clang/lib/AST | |
parent | 01a18809ee80b5a8bfa5a7a116e846405ab2851a (diff) | |
download | llvm-4acfd83ee492ba238c4082a5467a5a8e92d45102.zip llvm-4acfd83ee492ba238c4082a5467a5a8e92d45102.tar.gz llvm-4acfd83ee492ba238c4082a5467a5a8e92d45102.tar.bz2 |
[clang][bytecode][NFC] Remove unused Context::getStack() (#138079)
Diffstat (limited to 'clang/lib/AST')
-rw-r--r-- | clang/lib/AST/ByteCode/Context.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/AST/ByteCode/Context.h b/clang/lib/AST/ByteCode/Context.h index 5a39f40..283be6c 100644 --- a/clang/lib/AST/ByteCode/Context.h +++ b/clang/lib/AST/ByteCode/Context.h @@ -63,8 +63,6 @@ public: ASTContext &getASTContext() const { return Ctx; } /// Returns the language options. const LangOptions &getLangOpts() const; - /// Returns the interpreter stack. - InterpStack &getStack() { return Stk; } /// Returns CHAR_BIT. unsigned getCharBit() const; /// Return the floating-point semantics for T. |