diff options
| author | Alp Toker <alp@nuanti.com> | 2013-12-05 05:44:44 +0000 |
|---|---|---|
| committer | Alp Toker <alp@nuanti.com> | 2013-12-05 05:44:44 +0000 |
| commit | f907b891da1641034f0603b0c6bc00b7aa4d1f4a (patch) | |
| tree | 5244d8cc797bc53b3b0044368fb9cbcb6700fed8 /llvm/tools/llvm-stress | |
| parent | 01d19d0299495e1dbe95ac2bed79e5c0af66391c (diff) | |
| download | bcm5719-llvm-f907b891da1641034f0603b0c6bc00b7aa4d1f4a.tar.gz bcm5719-llvm-f907b891da1641034f0603b0c6bc00b7aa4d1f4a.zip | |
Correct word hyphenations
This patch tries to avoid unrelated changes other than fixing a few
hyphen-related ambiguities and contractions in nearby lines.
llvm-svn: 196471
Diffstat (limited to 'llvm/tools/llvm-stress')
| -rw-r--r-- | llvm/tools/llvm-stress/llvm-stress.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-stress/llvm-stress.cpp b/llvm/tools/llvm-stress/llvm-stress.cpp index fd10baf5a4a..3034568ec5b 100644 --- a/llvm/tools/llvm-stress/llvm-stress.cpp +++ b/llvm/tools/llvm-stress/llvm-stress.cpp @@ -289,7 +289,7 @@ protected: struct LoadModifier: public Modifier { LoadModifier(BasicBlock *BB, PieceTable *PT, Random *R):Modifier(BB, PT, R) {} virtual void Act() { - // Try to use predefined pointers. If non exist, use undef pointer value; + // Try to use predefined pointers. If non-exist, use undef pointer value; Value *Ptr = getRandomPointerValue(); Value *V = new LoadInst(Ptr, "L", BB->getTerminator()); PT->push_back(V); @@ -299,7 +299,7 @@ struct LoadModifier: public Modifier { struct StoreModifier: public Modifier { StoreModifier(BasicBlock *BB, PieceTable *PT, Random *R):Modifier(BB, PT, R) {} virtual void Act() { - // Try to use predefined pointers. If non exist, use undef pointer value; + // Try to use predefined pointers. If non-exist, use undef pointer value; Value *Ptr = getRandomPointerValue(); Type *Tp = Ptr->getType(); Value *Val = getRandomValue(Tp->getContainedType(0)); |

