diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-14 10:43:54 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-14 10:43:54 -0700 |
commit | 3c8c068617ea03fb8c1e884f570fbc986b9bf977 (patch) | |
tree | 1e5828781621aa6030504b025e10c26db1456d76 | |
parent | 1ddb637687e685a7aa17853e3327ceae88e40547 (diff) | |
parent | 41b4a5600db72ec5033a3e7dab26e0e0eb53150c (diff) |
Merge pull request #1681 from marcosscriven/incoming
Fix debug format to allow specific LLVM opts rather than just an integer level
-rw-r--r-- | AUTHORS | 2 | ||||
-rwxr-xr-x | emcc | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -99,4 +99,4 @@ a license to everyone to use it as detailed in LICENSE.) * Tobias Vrinssen <tobias@vrinssen.de> * Patrick R. Martin <patrick.martin.r@gmail.com> * Richard Quirk <richard.quirk@gmail.com> - +* Marcos Scriven <marcos@scriven.org> @@ -1231,7 +1231,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 |