Skip to content

Commit

Permalink
[Truffle] Add untaint double specialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Fish committed Oct 10, 2016
1 parent 9309de6 commit a1a1fe1
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -1896,6 +1896,11 @@ public long untaint(long num) {
return num;
}

@Specialization
public double untaint(double num) {
return num;
}

@Specialization
public boolean untaint(boolean bool) {
return bool;
Expand Down

0 comments on commit a1a1fe1

Please sign in to comment.