Skip to content

Commit

Permalink
Exclusive instructions can be compiled to PPC
Browse files Browse the repository at this point in the history
Signed-off-by: Hernan Ponce de Leon <zeta96@gmail.com>
  • Loading branch information
hernanponcedeleon committed Oct 27, 2024
1 parent 4d72f2e commit a458619
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,4 @@ public void ARMCompiledToTSO() throws Exception {
comp.setTarget(Arch.TSO);
comp.run(p);
}

@Test(expected = IllegalArgumentException.class)
public void ARMCompiledToPower() throws Exception {
Program p = new ProgramParser().parse(new File(getRootPath("litmus/AARCH64/ATOM/2+2W+poxxs.litmus")));
LoopUnrolling.newInstance().run(p);
Compilation comp = Compilation.newInstance();
comp.setTarget(Arch.POWER);
comp.run(p);
}
}

0 comments on commit a458619

Please sign in to comment.