Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -194,7 +194,8 @@ public ConcatNode(ConcatNode prev) {

@Specialization
public RubyString concat(RubyString string, RubyString other) {
notDesignedForCompilation();
// TODO (nirvdrum 06-Feb-15) This shouldn't be designed for compilation because we don't support all the String semantics yet, but a bench9000 benchmark has it on a hot path, so commenting out for now.
//notDesignedForCompilation();

if (string.isFrozen()) {
CompilerDirectives.transferToInterpreter();

0 comments on commit bad557b

Please sign in to comment.