1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Fix typo in test/CodeGen/Mips/dins.ll

Differential Revision: https://reviews.llvm.org/D49704

llvm-svn: 337771
This commit is contained in:
Thomas Anderson 2018-07-23 23:19:53 +00:00
parent 7c9f5c25d8
commit e049b173d1

View File

@ -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;
; }