Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3184)

Unified Diff: crosstest/crosstest.py

Issue 397833002: Lower the rest of the vector arithmetic operations. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Format crosstest.py Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | crosstest/test_arith.h » ('j') | crosstest/test_arith_main.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crosstest/crosstest.py
diff --git a/crosstest/crosstest.py b/crosstest/crosstest.py
index be6c54ca51da08fe7fceef8cf5f8ec4cbd8e07f2..78520213465a70ba4587013285b2a20efba4338c 100755
--- a/crosstest/crosstest.py
+++ b/crosstest/crosstest.py
@@ -130,6 +130,6 @@ if __name__ == '__main__':
objs.append(bitcode)
linker = 'clang' if os.path.splitext(args.driver)[1] == '.c' else 'clang++'
- shellcmd([os.path.join(llvm_bin_path, linker), '-g', '-m32', args.driver] +
- objs +
+ shellcmd([os.path.join(llvm_bin_path, linker), '-g', '-m32', '-mstackrealign',
Jim Stichnoth 2014/07/16 19:17:10 80-col
jvoung (off chromium) 2014/07/16 19:23:25 Add a TODO to remove mstackrealign.
wala 2014/07/17 01:34:53 Done.
wala 2014/07/17 01:34:53 Done.
+ args.driver] + objs +
['-lm', '-lpthread', '-o', os.path.join(args.dir, args.output)])
« no previous file with comments | « no previous file | crosstest/test_arith.h » ('j') | crosstest/test_arith_main.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698