diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-17 20:16:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-17 20:16:09 -0700 |
commit | 1b429576d78fcd9d601722c4cb41c44d55c62cd1 (patch) | |
tree | d12bef6367043f550bcdf2a4742fa75e87f1338a | |
parent | 5d82a4c77304f6fcd164d73fbad6c0f3c9a43daf (diff) | |
parent | 4496bd1f5f644c37e0600f3bb1c756d8ff307b7f (diff) |
Merge pull request #1072 from waywardmonkeys/adjust-asm-constraints
Use a generic constraint for test_inlinejs.
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index c2d70c22..507e5041 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -3541,7 +3541,7 @@ def process(filename): double get() { double ret = 0; - __asm __volatile__("12/3.3":"=a"(ret)); + __asm __volatile__("12/3.3":"=r"(ret)); return ret; } |