fc3eef63e8
This includes new source tarballs, updated patches, and updated expected results for test cases. In addition, three new tables (PRMT, RGRT and SVKL) now have big-endian support. Signed-off-by: Al Stone <ahs3@redhat.com>
23 lines
718 B
Diff
23 lines
718 B
Diff
Index: acpica-unix2-20220331/source/compiler/aslparseop.c
|
|
===================================================================
|
|
--- acpica-unix2-20220331.orig/source/compiler/aslparseop.c
|
|
+++ acpica-unix2-20220331/source/compiler/aslparseop.c
|
|
@@ -285,7 +285,16 @@ TrCreateValuedLeafOp (
|
|
|
|
|
|
Op = TrAllocateOp (ParseOpcode);
|
|
- Op->Asl.Value.Integer = Value;
|
|
+ if (ParseOpcode == PARSEOP_NAMESTRING ||
|
|
+ ParseOpcode == PARSEOP_NAMESEG ||
|
|
+ ParseOpcode == PARSEOP_STRING_LITERAL)
|
|
+ {
|
|
+ Op->Asl.Value.String = (char *) Value;
|
|
+ }
|
|
+ else
|
|
+ {
|
|
+ Op->Asl.Value.Integer = Value;
|
|
+ }
|
|
|
|
DbgPrint (ASL_PARSE_OUTPUT,
|
|
"\nCreateValuedLeafOp Ln/Col %u/%u NewOp %p "
|