(no commit message)
authorlkcl <lkcl@web>
Sat, 1 Apr 2023 19:53:31 +0000 (20:53 +0100)
committerIkiWiki <ikiwiki.info>
Sat, 1 Apr 2023 19:53:31 +0000 (20:53 +0100)
openpower/sv/rfc/ls010.mdwn

index d0c8084373c9aa98a01e4b694df7c5db7f924fbe..f89d18f59b97114116b215ec1dae9be1bc55094a 100644 (file)
@@ -244,7 +244,7 @@ the numerically-lowest element at the **MSB** end of the register.
     void get_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
         check_num_elements(elt, width);
         switch (width) {
-            case 64: el->dwords[p] = VSR_regfile[gpr].dwords[1-elt];
+            case 64: el->dwords[0] = VSR_regfile[gpr].dwords[1-elt];
             case 32: el->words[0] = VSR_regfile[gpr].words[3-elt];
             case 16: el->hwords[0] = VSR_regfile[gpr].hwords[7-elt];
             case 8 : el->bytes[0] = VSR_regfile[gpr].bytes[15-elt];