Skip to content

Commit

Permalink
Fix printing bug #1599 (#1601)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxaehle authored Jan 4, 2024
1 parent a6e8dc0 commit 119f2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enzyme/Enzyme/ActivityAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2192,7 +2192,7 @@ bool ActivityAnalyzer::isConstantValue(TypeResults const &TR, Value *Val) {
else
llvm::errs() << potentiallyActiveStore;
llvm::errs() << " potentialStore=";
if (potentiallyActiveStore)
if (potentialStore)
llvm::errs() << *potentialStore;
else
llvm::errs() << potentialStore;
Expand Down

0 comments on commit 119f2f1

Please sign in to comment.