Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
fangerer committed Sep 30, 2021
1 parent 8dd794e commit 5bfeedc
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,6 @@ protected LLVM80BitFloat doLLVM80BitFloat(LLVM80BitFloat magnitude, LLVM80BitFlo
abstract static class LLVMUnsignedVectorMinMaxNode extends LLVMBuiltin {
protected abstract int getVectorLength();

@SuppressWarnings("unused")
protected boolean compare(boolean a, boolean b) {
throw CompilerDirectives.shouldNotReachHere();
}
Expand All @@ -829,22 +828,18 @@ private short compare(short a, short b) {
return (short) compare((int) a, (int) b);
}

@SuppressWarnings("unused")
protected int compare(int a, int b) {
throw CompilerDirectives.shouldNotReachHere();
}

@SuppressWarnings("unused")
protected long compare(long a, long b) {
throw CompilerDirectives.shouldNotReachHere();
}

@SuppressWarnings("unused")
protected float compare(float a, float b) {
throw CompilerDirectives.shouldNotReachHere();
}

@SuppressWarnings("unused")
protected double compare(double a, double b) {
throw CompilerDirectives.shouldNotReachHere();
}
Expand Down

0 comments on commit 5bfeedc

Please sign in to comment.