diff options
Diffstat (limited to 'llvm/lib/CodeGen/ImplicitNullChecks.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ImplicitNullChecks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ImplicitNullChecks.cpp b/llvm/lib/CodeGen/ImplicitNullChecks.cpp index 122e23d4a5c..d7644a6676c 100644 --- a/llvm/lib/CodeGen/ImplicitNullChecks.cpp +++ b/llvm/lib/CodeGen/ImplicitNullChecks.cpp @@ -61,10 +61,10 @@ class ImplicitNullChecks : public MachineFunctionPass { // The block the check resides in. MachineBasicBlock *CheckBlock; - // The block branched to if the the pointer is non-null. + // The block branched to if the pointer is non-null. MachineBasicBlock *NotNullSucc; - // The block branched to if the the pointer is null. + // The block branched to if the pointer is null. MachineBasicBlock *NullSucc; NullCheck() |