[clang] [clang][Interp] Add an EvaluationResult class (PR #71315)

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 15 05:57:02 PST 2024


================
@@ -183,11 +178,7 @@ int32_t ByteCodeEmitter::getOffset(LabelTy Label) {
   return 0ull;
 }
 
-bool ByteCodeEmitter::bail(const SourceLocation &Loc) {
-  if (!BailLocation)
-    BailLocation = Loc;
-  return false;
-}
+bool ByteCodeEmitter::bail(const SourceLocation &Loc) { return false; }
----------------
AaronBallman wrote:

Do you have future plans for this function (aka, should we remove it entirely now)?

https://github.com/llvm/llvm-project/pull/71315


More information about the cfe-commits mailing list