diff options
author | roland <roland> | 2007-01-26 01:12:46 +0000 |
---|---|---|
committer | roland <roland> | 2007-01-26 01:12:46 +0000 |
commit | 78c6137e1a9b0ccda68bcb4b4bd19085869a88ab (patch) | |
tree | 739c116b9870d7617609cab2513d72e2c88c6861 /runtime | |
parent | 69deb05a1c035121468330136b9255d1a97ea1cd (diff) | |
download | systemtap-steved-78c6137e1a9b0ccda68bcb4b4bd19085869a88ab.tar.gz systemtap-steved-78c6137e1a9b0ccda68bcb4b4bd19085869a88ab.tar.xz systemtap-steved-78c6137e1a9b0ccda68bcb4b4bd19085869a88ab.zip |
2007-01-25 Roland McGrath <roland@redhat.com>
* loc2c-runtime.h (store_deref): Use "Zr" constraint for 64-bit case.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/loc2c-runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/loc2c-runtime.h b/runtime/loc2c-runtime.h index ce6d04b7..7ed9d415 100644 --- a/runtime/loc2c-runtime.h +++ b/runtime/loc2c-runtime.h @@ -182,7 +182,7 @@ case 1: __put_user_asm(((u8)(value)),addr,_bad,"b","b","iq",1); break; \ case 2: __put_user_asm(((u16)(value)),addr,_bad,"w","w","ir",1); break; \ case 4: __put_user_asm(((u32)(value)),addr,_bad,"l","k","ir",1); break; \ - case 8: __put_user_asm(((u64)(value)),addr,_bad,"q","","ir",1); break; \ + case 8: __put_user_asm(((u64)(value)),addr,_bad,"q","","Zr",1); break; \ default: __put_user_bad(); \ } \ if (_bad) \ |