diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/asmtest.S | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/asmtest.S b/tests/asmtest.S index 10ec2ee..dbc6c15 100644 --- a/tests/asmtest.S +++ b/tests/asmtest.S @@ -824,6 +824,17 @@ nop .skip (-((4b-3b) > 0) * 2) , 0x90 .popsection +.globl overrideme +.weak overrideme + nop +.globl notimplemented +notimplemented: + ret +.set overrideme, notimplemented +overrideme = notimplemented +overrideme: + ret + movd %esi, %mm1 movd %edi, %xmm2 movd (%ebx), %mm3 |
