Skip to content

Commit

Permalink
Fix docx issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav92003 committed Mar 24, 2024
1 parent d2a7d9f commit af04498
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/ir/x86/opcode_api.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* **********************************************************
* Copyright (c) 2011-2023 Google, Inc. All rights reserved.
* Copyright (c) 2011-2024 Google, Inc. All rights reserved.
* Copyright (c) 2000-2010 VMware, Inc. All rights reserved.
* **********************************************************/

Expand Down Expand Up @@ -1615,12 +1615,12 @@ enum {
/* 1434 */ OP_vpopcntq, /**< IA-32/AMD64 vpopcntd opcode. */

/* Supervisor Mode Access Prevention (SMAP) */
/* 1435 */ OP_clac,
/* 1436 */ OP_stac,
/* 1437 */ OP_xsaves32,
/* 1438 */ OP_xsaves64,
/* 1439 */ OP_xrstors32,
/* 1440 */ OP_xrstors64,
/* 1435 */ OP_clac, /**< IA-32/AMD64 clac opcode. */
/* 1436 */ OP_stac, /**< IA-32/AMD64 stac opcode. */
/* 1437 */ OP_xsaves32, /**< IA-32/AMD64 xsaves32 opcode. */
/* 1438 */ OP_xsaves64, /**< IA-32/AMD64 xsaves64 opcode. */
/* 1439 */ OP_xrstors32, /**< IA-32/AMD64 xrstors32 opcode. */
/* 1440 */ OP_xrstors64, /**< IA-32/AMD64 xrstors64 opcode. */
OP_AFTER_LAST,
OP_FIRST = OP_add, /**< First real opcode. */
OP_LAST = OP_AFTER_LAST - 1, /**< Last real opcode. */
Expand Down

0 comments on commit af04498

Please sign in to comment.