Skip to content

Commit

Permalink
disable some dcpu features we don't need
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Jul 30, 2012
1 parent 23aaf57 commit 79055c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emcc
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ try:
# Run llvm-js
if DEBUG: print >> sys.stderr, 'emcc: LLVM => JS'
#execute([shared.LLVM_COMPILER, '-disable-sparc-delay-filler', '-mtriple=sparc', final, '-o=' + final + '.js'])
execute([shared.LLVM_COMPILER, '-mtriple=dcpu16', final, '-o=' + final + '.js'])
execute([shared.LLVM_COMPILER, '-mtriple=dcpu16', '--disable-dcpu16-peephole', '--disable-dcpu16-brcc', final, '-o=' + final + '.js'])
bitcode = final
final += '.js'
if DEBUG: save_intermediate('llvmjs')
Expand Down

0 comments on commit 79055c0

Please sign in to comment.