Skip to content

Commit

Permalink
Remove test compiler test for unsupported sshl
Browse files Browse the repository at this point in the history
Previously, the Power codegen did not support the sshl opcode. For some
reason, one of the test compiler tests was thus asserting that this
opcode should cause a compilation failure. As the sshl opcode is now
supported, this test has been removed.

Signed-off-by: Ben Thomas <ben@benthomas.ca>
  • Loading branch information
aviansie-ben committed Sep 26, 2019
1 parent b2eb4ab commit 218aaff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fvtest/compilertest/tests/PPCOpCodesTest.cpp
Expand Up @@ -576,8 +576,6 @@ PPCOpCodesTest::UnsupportedOpCodesTests()
addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::sdiv, "sDiv", _argTypesBinaryShort, TR::Int16);
addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::srem, "sRem", _argTypesBinaryShort, TR::Int16);

addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::sshl, "sShl", _argTypesBinaryShort, TR::Int16);

addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::bucmplt, "bucmplt", _argTypesBinaryByte, TR::Int32);
addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::bucmpge, "bucmpge", _argTypesBinaryByte, TR::Int32);
addUnsupportedOpCodeTest(_numberOfBinaryArgs, TR::bucmpgt, "bucmpgt", _argTypesBinaryByte, TR::Int32);
Expand Down

0 comments on commit 218aaff

Please sign in to comment.