aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/ByteCode/Pointer.cpp
diff options
context:
space:
mode:
authorTimm Bäder <tbaeder@redhat.com>2024-12-28 14:17:06 +0100
committerTimm Bäder <tbaeder@redhat.com>2024-12-28 14:17:06 +0100
commit3496e96f78c46f5b94c1892f97c470fd89293795 (patch)
tree652050943032121a3cc96783e62751d4ddc56a05 /clang/lib/AST/ByteCode/Pointer.cpp
parente86b68ff560aaf5fc723eaa8d8418892b2456e12 (diff)
downloadllvm-3496e96f78c46f5b94c1892f97c470fd89293795.zip
llvm-3496e96f78c46f5b94c1892f97c470fd89293795.tar.gz
llvm-3496e96f78c46f5b94c1892f97c470fd89293795.tar.bz2
[clang][bytecode] Add a missing break
Diffstat (limited to 'clang/lib/AST/ByteCode/Pointer.cpp')
-rw-r--r--clang/lib/AST/ByteCode/Pointer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/AST/ByteCode/Pointer.cpp b/clang/lib/AST/ByteCode/Pointer.cpp
index da20259..ec4756f 100644
--- a/clang/lib/AST/ByteCode/Pointer.cpp
+++ b/clang/lib/AST/ByteCode/Pointer.cpp
@@ -316,6 +316,7 @@ void Pointer::print(llvm::raw_ostream &OS) const {
case Storage::Fn:
OS << "(Fn) { " << asFunctionPointer().getFunction() << " + " << Offset
<< " }";
+ break;
case Storage::Typeid:
OS << "(Typeid)";
}