mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
Fix "existant" typos
llvm-svn: 193579
This commit is contained in:
parent
c358358cab
commit
54480d8824
@ -34,7 +34,7 @@ public:
|
||||
// We can preserve non-critical-edgeness when we unify function exit nodes
|
||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||
|
||||
// getReturn|Unwind|UnreachableBlock - Return the new single (or nonexistant)
|
||||
// getReturn|Unwind|UnreachableBlock - Return the new single (or nonexistent)
|
||||
// return, unwind, or unreachable basic blocks in the CFG.
|
||||
//
|
||||
BasicBlock *getReturnBlock() const { return ReturnBlock; }
|
||||
|
@ -6451,7 +6451,7 @@ static void checkForCyclesHelper(const SDNode *N,
|
||||
|
||||
void llvm::checkForCycles(const llvm::SDNode *N) {
|
||||
#ifdef XDEBUG
|
||||
assert(N && "Checking nonexistant SDNode");
|
||||
assert(N && "Checking nonexistent SDNode");
|
||||
SmallPtrSet<const SDNode*, 32> visited;
|
||||
SmallPtrSet<const SDNode*, 32> checked;
|
||||
checkForCyclesHelper(N, visited, checked);
|
||||
|
@ -1,9 +1,9 @@
|
||||
// RUN: FileCheck -check-prefix=ANOTHER-PREFIX -input-file %s %s
|
||||
// RUN: not FileCheck -check-prefix=PREFIX -input-file %s %s 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTANT-PREFIX %s
|
||||
// RUN: not FileCheck -check-prefix=PREFIX -input-file %s %s 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT-PREFIX %s
|
||||
|
||||
foobar
|
||||
; ANOTHER-PREFIX: foobar
|
||||
|
||||
; We use regex to match the colon so that FileCheck won't think it is a check
|
||||
; prefix.
|
||||
; CHECK-NONEXISTANT-PREFIX: error: no check strings found with prefix 'PREFIX{{:}}'
|
||||
; CHECK-NONEXISTENT-PREFIX: error: no check strings found with prefix 'PREFIX{{:}}'
|
||||
|
@ -1,6 +1,6 @@
|
||||
; RUN: opt < %s -loop-reduce -S | FileCheck %s
|
||||
;
|
||||
; Test LSR's ability to prune formulae that refer to nonexistant
|
||||
; Test LSR's ability to prune formulae that refer to nonexistent
|
||||
; AddRecs in other loops.
|
||||
;
|
||||
; Unable to reduce this case further because it requires LSR to exceed
|
||||
|
Loading…
Reference in New Issue
Block a user