summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-06-19 19:41:26 +0000
committerAlp Toker <alp@nuanti.com>2014-06-19 19:41:26 +0000
commitd06976aba71501f4970bc5bf28d3a9a98c1fb3ad (patch)
tree98ec20b2bc69bb3e56bd1248dfaa4a86cd6434d8 /lib
parentf21de942f3785d86d1f82cd19072ca26de9167da (diff)
downloadllvm-d06976aba71501f4970bc5bf28d3a9a98c1fb3ad.tar.gz
llvm-d06976aba71501f4970bc5bf28d3a9a98c1fb3ad.tar.bz2
llvm-d06976aba71501f4970bc5bf28d3a9a98c1fb3ad.tar.xz
Fix typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMISelLowering.cpp2
-rw-r--r--lib/Target/R600/AMDGPUIntrinsics.td2
-rw-r--r--lib/Target/X86/X86FastISel.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp
index 4a762ce6d3..cf84995108 100644
--- a/lib/Target/ARM/ARMISelLowering.cpp
+++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -7147,7 +7147,7 @@ ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
// thumb-2 environment, so there is no interworking required. As a result, we
// do not expect a veneer to be emitted by the linker, clobbering IP.
//
- // Each module recieves its own copy of __chkstk, so no import thunk is
+ // Each module receives its own copy of __chkstk, so no import thunk is
// required, again, ensuring that IP is not clobbered.
//
// Finally, although some linkers may theoretically provide a trampoline for
diff --git a/lib/Target/R600/AMDGPUIntrinsics.td b/lib/Target/R600/AMDGPUIntrinsics.td
index 538b4cd8af..27c0dbea09 100644
--- a/lib/Target/R600/AMDGPUIntrinsics.td
+++ b/lib/Target/R600/AMDGPUIntrinsics.td
@@ -67,7 +67,7 @@ let TargetPrefix = "AMDGPU", isTarget = 1 in {
def int_AMDGPU_barrier_global : Intrinsic<[], [], []>;
}
-// Legacy names for compatability.
+// Legacy names for compatibility.
let TargetPrefix = "AMDIL", isTarget = 1 in {
def int_AMDIL_abs : Intrinsic<[llvm_anyint_ty], [LLVMMatchType<0>], [IntrNoMem]>;
def int_AMDIL_fraction : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp
index 9557d96d53..6bccd1290f 100644
--- a/lib/Target/X86/X86FastISel.cpp
+++ b/lib/Target/X86/X86FastISel.cpp
@@ -1315,7 +1315,7 @@ bool X86FastISel::X86SelectBranch(const Instruction *I) {
FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
// Emits an unconditional branch to the FalseBB, obtains the branch
- // weight, andd adds it to the successor list.
+ // weight, and adds it to the successor list.
FastEmitBranch(FalseMBB, DbgLoc);
return true;