[Lldb-commits] [PATCH] D61085: [lldb] [lit] Remove unnecessary array use in XMM reading test

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 25 10:43:30 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL359208: [lldb] [lit] Remove unnecessary array use in XMM reading test (authored by mgorny, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D61085?vs=196500&id=196677#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61085/new/

https://reviews.llvm.org/D61085

Files:
  lldb/trunk/lit/Register/Inputs/x86-mm-xmm-read.cpp


Index: lldb/trunk/lit/Register/Inputs/x86-mm-xmm-read.cpp
===================================================================
--- lldb/trunk/lit/Register/Inputs/x86-mm-xmm-read.cpp
+++ lldb/trunk/lit/Register/Inputs/x86-mm-xmm-read.cpp
@@ -14,14 +14,14 @@
   uint64_t mm6 = 0x6162636465666768;
   uint64_t mm7 = 0x7172737475767778;
 
-  xmm_t xmm0[2] = { 0x020406080A0C0E01, 0x030507090B0D0F00 };
-  xmm_t xmm1[2] = { 0x121416181A1C1E11, 0x131517191B1D1F10 };
-  xmm_t xmm2[2] = { 0x222426282A2C2E21, 0x232527292B2D2F20 };
-  xmm_t xmm3[2] = { 0x323436383A3C3E31, 0x333537393B3D3F30 };
-  xmm_t xmm4[2] = { 0x424446484A4C4E41, 0x434547494B4D4F40 };
-  xmm_t xmm5[2] = { 0x525456585A5C5E51, 0x535557595B5D5F50 };
-  xmm_t xmm6[2] = { 0x626466686A6C6E61, 0x636567696B6D6F60 };
-  xmm_t xmm7[2] = { 0x727476787A7C7E71, 0x737577797B7D7F70 };
+  xmm_t xmm0 = { 0x020406080A0C0E01, 0x030507090B0D0F00 };
+  xmm_t xmm1 = { 0x121416181A1C1E11, 0x131517191B1D1F10 };
+  xmm_t xmm2 = { 0x222426282A2C2E21, 0x232527292B2D2F20 };
+  xmm_t xmm3 = { 0x323436383A3C3E31, 0x333537393B3D3F30 };
+  xmm_t xmm4 = { 0x424446484A4C4E41, 0x434547494B4D4F40 };
+  xmm_t xmm5 = { 0x525456585A5C5E51, 0x535557595B5D5F50 };
+  xmm_t xmm6 = { 0x626466686A6C6E61, 0x636567696B6D6F60 };
+  xmm_t xmm7 = { 0x727476787A7C7E71, 0x737577797B7D7F70 };
 
   asm volatile(
     "movq    %0, %%mm0\n\t"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61085.196677.patch
Type: text/x-patch
Size: 1366 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190425/6c702564/attachment.bin>


More information about the lldb-commits mailing list