Skip to content

Commit

Permalink
[Truffle] Got some compiler options wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Nov 15, 2016
1 parent 053e1d0 commit a9b2e54
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion samples/truffle/can-we-fold-yet.rb
Expand Up @@ -6,7 +6,7 @@
# GNU General Public License version 2
# GNU Lesser General Public License version 2.1

# Use -J-Dgraal.TruffleIterativePartialEscape
# Use -J-Dgraal.TruffleIterativePartialEscape=true

unless Truffle.graal?
puts 'You need Graal to run this'
Expand Down
2 changes: 1 addition & 1 deletion test/truffle/compiler/attachments-optimise.sh
Expand Up @@ -3,4 +3,4 @@
source test/truffle/common.sh.inc

# relies on value profiling
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal -Xtruffle.basic_ops.inline=false test/truffle/compiler/attachments-optimise/attachments-optimise.rb
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal=true -Xtruffle.basic_ops.inline=false test/truffle/compiler/attachments-optimise/attachments-optimise.rb
2 changes: 1 addition & 1 deletion test/truffle/compiler/osr.sh
Expand Up @@ -2,4 +2,4 @@

source test/truffle/common.sh.inc

jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal test/truffle/compiler/osr/osr.rb
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal=true test/truffle/compiler/osr/osr.rb
2 changes: 1 addition & 1 deletion test/truffle/compiler/pe.sh
Expand Up @@ -2,4 +2,4 @@

source test/truffle/common.sh.inc

jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreThrown -Xtruffle.basic_ops.inline=false test/truffle/compiler/pe/pe.rb
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreThrown=true -Xtruffle.basic_ops.inline=false test/truffle/compiler/pe/pe.rb
2 changes: 1 addition & 1 deletion test/truffle/compiler/pe/pe.rb
Expand Up @@ -24,7 +24,7 @@
#
# Run with:
#
# jt run --graal -J-Dgraal.TraceTruffleCompilation -J-Dgraal.TruffleCompilationExceptionsAreFatal -J-Dgraal.TruffleIterativePartialEscape test.rb
# jt run --graal -J-Dgraal.TraceTruffleCompilation=true -J-Dgraal.TruffleCompilationExceptionsAreFatal=true -J-Dgraal.TruffleIterativePartialEscape=true test.rb

unless Truffle::Graal.graal?
puts 'not running Graal'
Expand Down
2 changes: 1 addition & 1 deletion test/truffle/compiler/stf-optimises.sh_excluded
Expand Up @@ -2,4 +2,4 @@

source test/truffle/common.sh.inc

jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal test/truffle/compiler/stf-optimises/stf-optimises.rb
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal=true test/truffle/compiler/stf-optimises/stf-optimises.rb
2 changes: 1 addition & 1 deletion test/truffle/compiler/tp-optimises.sh_excluded
Expand Up @@ -2,4 +2,4 @@

source test/truffle/common.sh.inc

jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal test/truffle/compiler/tp-optimises/tp-optimises.rb
jt ruby --graal -J-Dgraal.TruffleCompilationExceptionsAreFatal=true test/truffle/compiler/tp-optimises/tp-optimises.rb

0 comments on commit a9b2e54

Please sign in to comment.