Index: crosstest/crosstest.py |
diff --git a/crosstest/crosstest.py b/crosstest/crosstest.py |
index 9b64399074021059df6e3d372f929cfb45dd19ed..89124d6c26c52f219a1d3a37c2f93fea563fb07a 100755 |
--- a/crosstest/crosstest.py |
+++ b/crosstest/crosstest.py |
@@ -134,7 +134,6 @@ if __name__ == '__main__': |
objs.append(bitcode) |
linker = 'clang' if os.path.splitext(args.driver)[1] == '.c' else 'clang++' |
- # TODO: Remove -mstackrealign after Subzero supports stack alignment. |
- shellcmd([os.path.join(llvm_bin_path, linker), '-g', '-m32', |
- '-mstackrealign', args.driver] + objs + |
+ shellcmd([os.path.join(llvm_bin_path, linker), '-g', '-m32', args.driver] + |
+ objs + |
['-lm', '-lpthread', '-o', os.path.join(args.dir, args.output)]) |