Skip to content

Commit

Permalink
Fix error message when regalloc eviction advisor analysis could not b…
Browse files Browse the repository at this point in the history
…e created (#72165)
  • Loading branch information
hiraditya committed Nov 14, 2023
1 parent 5adfad2 commit b7669ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion llvm/lib/CodeGen/RegAllocEvictionAdvisor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class DefaultEvictionAdvisorAnalysis final
bool doInitialization(Module &M) override {
if (NotAsRequested)
M.getContext().emitError("Requested regalloc eviction advisor analysis "
"could be created. Using default");
"could not be created. Using default");
return RegAllocEvictionAdvisorAnalysis::doInitialization(M);
}
const bool NotAsRequested;
Expand Down
4 changes: 2 additions & 2 deletions llvm/test/CodeGen/MLRegAlloc/default-eviction-advisor.ll
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ define void @f2(i64 %lhs, i64 %rhs, i64* %addr) {
ret void
}

; CHECK: Requested regalloc eviction advisor analysis could be created. Using default
; DEFAULT-NOT: Requested regalloc eviction advisor analysis could be created. Using default
; CHECK: Requested regalloc eviction advisor analysis could not be created. Using default
; DEFAULT-NOT: Requested regalloc eviction advisor analysis could not be created. Using default

0 comments on commit b7669ed

Please sign in to comment.