diff options
author | Timm Bäder <tbaeder@redhat.com> | 2024-12-28 14:17:06 +0100 |
---|---|---|
committer | Timm Bäder <tbaeder@redhat.com> | 2024-12-28 14:17:06 +0100 |
commit | 3496e96f78c46f5b94c1892f97c470fd89293795 (patch) | |
tree | 652050943032121a3cc96783e62751d4ddc56a05 /clang/lib/AST/ByteCode/Pointer.cpp | |
parent | e86b68ff560aaf5fc723eaa8d8418892b2456e12 (diff) | |
download | llvm-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.cpp | 1 |
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)"; } |