Skip to content

Commit 3b6362b

Browse files
committed
[Truffle] Fix n-body.
1 parent 8cd0203 commit 3b6362b

File tree

1 file changed

+1
-2
lines changed
  • truffle/src/main/java/org/jruby/truffle/nodes/core

1 file changed

+1
-2
lines changed

truffle/src/main/java/org/jruby/truffle/nodes/core/IONodes.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,9 @@ public WriteNode(WriteNode prev) {
9292
return ToSNodeFactory.create(getContext(), getSourceSection(), other);
9393
}
9494

95+
@CompilerDirectives.TruffleBoundary
9596
@Specialization
9697
public int write(RubyString string) {
97-
notDesignedForCompilation();
98-
9998
final ByteList byteList = string.getByteList();
10099

101100
final int offset = byteList.getBegin();

0 commit comments

Comments
 (0)