File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
llvm/lib/Transforms/Instrumentation Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3048,14 +3048,15 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
30483048 }
30493049
30503050 bool handleUnknownIntrinsic (IntrinsicInst &I) {
3051- bool success = handleUnknownIntrinsicUnlogged (I);
3052- if (ClDumpStrictIntrinsics)
3053- dumpInst (I);
3054-
3055- LLVM_DEBUG (dbgs () << " UNKNOWN INTRINSIC HANDLED HEURISTICALLY: " << I
3056- << " \n " );
3057-
3058- return success;
3051+ if (handleUnknownIntrinsicUnlogged (I)) {
3052+ if (ClDumpStrictIntrinsics)
3053+ dumpInst (I);
3054+
3055+ LLVM_DEBUG (dbgs () << " UNKNOWN INTRINSIC HANDLED HEURISTICALLY: " << I
3056+ << " \n " );
3057+ return true ;
3058+ } else
3059+ return false ;
30593060 }
30603061
30613062 void handleInvariantGroup (IntrinsicInst &I) {
You can’t perform that action at this time.
0 commit comments