From: Thomas Anderson Date: Mon, 23 Jul 2018 23:19:53 +0000 (+0000) Subject: Fix typo in test/CodeGen/Mips/dins.ll X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55b2a35d066289e9979f28694c6be62550f72c51;p=llvm Fix typo in test/CodeGen/Mips/dins.ll Differential Revision: https://reviews.llvm.org/D49704 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337771 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/Mips/dins.ll b/test/CodeGen/Mips/dins.ll index 2f7138ca4c5..79364ca675b 100644 --- a/test/CodeGen/Mips/dins.ll +++ b/test/CodeGen/Mips/dins.ll @@ -14,7 +14,7 @@ ; struct { ; unsigned long long addr :37; ; unsigned long long addr1 :15; -; unsigned int lenght:14; +; unsigned int length:14; ; uint64_t total_bytes:16; ; uint64_t segs : 6; ; } s; @@ -23,8 +23,8 @@ ; unsigned long long foo(volatile struct cvmx_buf_ptr bufptr) { ; bufptr.s.addr = 123; ; bufptr.s.segs = 4; -; bufptr.s.lenght = 5; -; bufptr.s.total_bytes = bufptr.s.lenght; +; bufptr.s.length = 5; +; bufptr.s.total_bytes = bufptr.s.length; ; return bufptr.s.addr; ; }