Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 521bfe9

Browse filesBrowse files
author
hborders
committed
Fixed conflicts from overzealous UnsignedComparisons deletion.
Conflicts: JavaInJava/src/com/sun/cri/bytecode/Bytecodes.java
2 parents fd94bba + ab04cfe commit 521bfe9
Copy full SHA for 521bfe9

1 file changed

+10Lines changed: 10 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎JavaInJava/src/com/sun/cri/bytecode/Bytecodes.java‎

Copy file name to clipboardExpand all lines: JavaInJava/src/com/sun/cri/bytecode/Bytecodes.java
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,16 @@ public static class JniOp {
666666
*/
667667
public static final int J2N = 3;
668668
}
669+
670+
/**
671+
* Constants and {@link INTRINSIC} definitions for unsigned comparisons.
672+
*/
673+
public static class UnsignedComparisons {
674+
public static final int ABOVE_THAN = 1;
675+
public static final int ABOVE_EQUAL = 2;
676+
public static final int BELOW_THAN = 3;
677+
public static final int BELOW_EQUAL = 4;
678+
}
669679

670680
/**
671681
* Constants for memory barriers.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.