diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-10-27 17:50:21 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-27 17:50:21 +0000 |
| commit | 9ff9371bb7331f329681b9df831922dd2e20fdee (patch) | |
| tree | 1f06354fd8520b15ff0f06fa57297349e87d008a /compiler-rt/lib/i386/floatundidf.S | |
| parent | 7d50478889d03ad6125710de69ff55e594a15139 (diff) | |
| download | bcm5719-llvm-9ff9371bb7331f329681b9df831922dd2e20fdee.tar.gz bcm5719-llvm-9ff9371bb7331f329681b9df831922dd2e20fdee.zip | |
Switch to using DEFINE_COMPILERRT_[PRIVATE_]FUNCTION to define function symbols inside .S files.
llvm-svn: 85264
Diffstat (limited to 'compiler-rt/lib/i386/floatundidf.S')
| -rw-r--r-- | compiler-rt/lib/i386/floatundidf.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/i386/floatundidf.S b/compiler-rt/lib/i386/floatundidf.S index e38e4556e2b..6f2acdb3cd2 100644 --- a/compiler-rt/lib/i386/floatundidf.S +++ b/compiler-rt/lib/i386/floatundidf.S @@ -28,8 +28,7 @@ twop84: .quad 0x4530000000000000 .text .align 4 -.globl ___floatundidf -___floatundidf: +DEFINE_COMPILERRT_FUNCTION(__floatundidf) movss 8(%esp), %xmm1 // high 32 bits of a movss 4(%esp), %xmm0 // low 32 bits of a calll 0f |

