diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-06-29 18:42:13 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-06-29 18:42:13 +0000 |
commit | 744d47ba98ced2e2a7d3aff2f894136544386e34 (patch) | |
tree | 917f6a025e019c7b80e50a45fa783593b4e3c19e /source/compiler/asllength.c | |
parent | c457a42be4fca72c51fdca569271b62213d01a37 (diff) |
Notes
Diffstat (limited to 'source/compiler/asllength.c')
-rw-r--r-- | source/compiler/asllength.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/compiler/asllength.c b/source/compiler/asllength.c index 58e69008c9b5..28ae2929a1e1 100644 --- a/source/compiler/asllength.c +++ b/source/compiler/asllength.c @@ -338,7 +338,7 @@ CgGenerateAmlOpcodeLength ( /* Does this opcode have an associated "PackageLength" field? */ Op->Asl.AmlPkgLenBytes = 0; - if (Op->Asl.CompileFlags & NODE_AML_PACKAGE) + if (Op->Asl.CompileFlags & OP_AML_PACKAGE) { Op->Asl.AmlPkgLenBytes = CgGetPackageLenByteCount ( Op, Op->Asl.AmlSubtreeLength); @@ -459,7 +459,7 @@ CgGenerateAmlLengths ( case PARSEOP_NAMESTRING: case PARSEOP_METHODCALL: - if (Op->Asl.CompileFlags & NODE_NAME_INTERNALIZED) + if (Op->Asl.CompileFlags & OP_NAME_INTERNALIZED) { break; } @@ -475,7 +475,7 @@ CgGenerateAmlLengths ( Op->Asl.ExternalName = Op->Asl.Value.String; Op->Asl.Value.String = Buffer; - Op->Asl.CompileFlags |= NODE_NAME_INTERNALIZED; + Op->Asl.CompileFlags |= OP_NAME_INTERNALIZED; Op->Asl.AmlLength = strlen (Buffer); /* |