comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/FrameSlotKind.java @ 19438:936f9d0b58e2

Small simplifications of FrameWithoutBoxing.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 17 Feb 2015 00:08:51 +0100
parents 5b2589732c45
children
comparison
equal deleted inserted replaced
19437:2e91c189b0d8 19438:936f9d0b58e2
31 Int, 31 Int,
32 Double, 32 Double,
33 Float, 33 Float,
34 Boolean, 34 Boolean,
35 Byte; 35 Byte;
36
37 public final byte tag;
38
39 private FrameSlotKind() {
40 this.tag = (byte) ordinal();
41 }
36 } 42 }