summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC
diff options
context:
space:
mode:
authorRobert Wilhelm <robert.wilhelm@gmx.net>2013-09-28 11:46:15 +0000
committerRobert Wilhelm <robert.wilhelm@gmx.net>2013-09-28 11:46:15 +0000
commitf80a63fa23862e578de919f4b44d4fcdee68fd0d (patch)
treea25031b3d6120f5c9b8cf8704a1ec88b44582c2c /test/CodeGen/PowerPC
parent8034d7100652091c20101554a3b6d6afa545e696 (diff)
downloadllvm-f80a63fa23862e578de919f4b44d4fcdee68fd0d.tar.gz
llvm-f80a63fa23862e578de919f4b44d4fcdee68fd0d.tar.bz2
llvm-f80a63fa23862e578de919f4b44d4fcdee68fd0d.tar.xz
Fix spelling intruction -> instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC')
-rw-r--r--test/CodeGen/PowerPC/vec_extload.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/vec_extload.ll b/test/CodeGen/PowerPC/vec_extload.ll
index 6373a26d82..8d16e15b8f 100644
--- a/test/CodeGen/PowerPC/vec_extload.ll
+++ b/test/CodeGen/PowerPC/vec_extload.ll
@@ -5,7 +5,7 @@
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
target triple = "powerpc64-unknown-linux-gnu"
-; Altivec does not provides an sext intruction, so it expands
+; Altivec does not provides an sext instruction, so it expands
; a set of vector stores (stvx), bytes load/sign expand/store
; (lbz/stb), and a final vector load (lvx) to load the result
; extended vector.