diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-17 18:00:39 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-17 18:00:39 +0700 |
commit | 4496bd1f5f644c37e0600f3bb1c756d8ff307b7f (patch) | |
tree | 67caee9c8a29f24805fcbc887eb82bc13c1cfc76 | |
parent | 985765d9a5b2dcca05bc5f8401e3d2423964d0f2 (diff) |
Use a generic constraint for test_inlinejs.
This being generic lets it work with multiple target triples
rather than being x86-specific. This works under both the
current target triple and le32-unknown-nacl.
-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 db5ba108..bda17fe7 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; } |