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.
This commit is contained in:
Bruce Mitchener 2013-04-17 18:00:39 +07:00
Родитель 985765d9a5
Коммит 4496bd1f5f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}