diff options
author | Marcos Scriven <marcosscriven@ubuntu32.(none)> | 2013-09-29 18:41:01 +0100 |
---|---|---|
committer | Marcos Scriven <marcosscriven@ubuntu32.(none)> | 2013-09-29 18:41:01 +0100 |
commit | 20e5ea84989c2468d8b83d1d8eabe8d1a61cc806 (patch) | |
tree | f130f29f4820d1b1798f6ef53688b922d72a5807 /emcc | |
parent | 51256ab4452f9b1aa3774ef2eece26faa652ab22 (diff) |
Debug statement fails when using specific LLVM opts rather than an integer level
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1214,7 +1214,7 @@ try: file_suffix = filename_type_suffix(input_file) if file_suffix.endswith(SOURCE_SUFFIXES): temp_file = temp_files[i] - logging.debug('optimizing %s with -O%d' % (input_file, llvm_opts)) + logging.debug('optimizing %s with -O%s' % (input_file, llvm_opts)) shared.Building.llvm_opt(temp_file, llvm_opts) # If we were just asked to generate bitcode, stop there |