[GlobalISel] Fix G_OR opcode after the addition of a TargetOpcode.

r275367 fixed G_ADD and G_BR, but not G_OR.

llvm-svn: 275444
This commit is contained in:
Ahmed Bougacha 2016-07-14 17:29:49 +00:00
parent 9e511525a0
commit 83dc5cb6a9
1 changed files with 2 additions and 2 deletions

View File

@ -160,10 +160,10 @@ HANDLE_TARGET_OPCODE(G_ADD, 26)
HANDLE_TARGET_OPCODE_MARKER(PRE_ISEL_GENERIC_OPCODE_START, G_ADD)
/// Generic Bitwise-OR instruction.
HANDLE_TARGET_OPCODE(G_OR, 25)
HANDLE_TARGET_OPCODE(G_OR, 27)
/// Generic BRANCH instruction. This is an unconditional branch.
HANDLE_TARGET_OPCODE(G_BR, 27)
HANDLE_TARGET_OPCODE(G_BR, 28)
// TODO: Add more generic opcodes as we move along.