aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Jones <joel_k_jones@apple.com>2012-05-31 17:11:25 +0000
committerJoel Jones <joel_k_jones@apple.com>2012-05-31 17:11:25 +0000
commit703360f93cf88aeab3d602a454c554622eba63e9 (patch)
treec93156f190b311fd5fabc26e915a5b61508ece48
parenta1b95f53cc29b82fa7628affc9d01a08c620f5fd (diff)
downloadexternal_llvm-703360f93cf88aeab3d602a454c554622eba63e9.zip
external_llvm-703360f93cf88aeab3d602a454c554622eba63e9.tar.gz
external_llvm-703360f93cf88aeab3d602a454c554622eba63e9.tar.bz2
Fix typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157752 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/NVPTX/NVPTXAllocaHoisting.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp b/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
index 2706b0b..668c393 100644
--- a/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
+++ b/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
@@ -1,4 +1,4 @@
-//===-- AllocaHoisting.cpp - Hosist allocas to the entry block --*- C++ -*-===//
+//===-- AllocaHoisting.cpp - Hoist allocas to the entry block --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -38,7 +38,7 @@ bool NVPTXAllocaHoisting::runOnFunction(Function &function) {
char NVPTXAllocaHoisting::ID = 1;
RegisterPass<NVPTXAllocaHoisting> X("alloca-hoisting",
- "Hoisting alloca instructsion in non-entry "
+ "Hoisting alloca instructions in non-entry "
"blocks to the entry block");
FunctionPass *createAllocaHoisting() {