diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2010-06-21 11:50:42 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2010-06-21 11:50:42 -0700 |
commit | 67e6fcd19533f54ca37cbe72425f55a40a7f0333 (patch) | |
tree | 51bd71957a0510d5b24d1f1e118e3b342214c8c2 /libpixelflinger/codeflinger/ARMAssemblerProxy.cpp | |
parent | f1792b3d125a6adefa6941d20b3f26833570ab65 (diff) | |
parent | 1adbb607d2b6a74b7871a8cecd7c5690c8c5cf6d (diff) | |
download | system_core-67e6fcd19533f54ca37cbe72425f55a40a7f0333.zip system_core-67e6fcd19533f54ca37cbe72425f55a40a7f0333.tar.gz system_core-67e6fcd19533f54ca37cbe72425f55a40a7f0333.tar.bz2 |
merge from froyo-plus-aosp
Change-Id: Ie231effb4d9dfd63aa98ec08b269c31ce32aa1c0
Diffstat (limited to 'libpixelflinger/codeflinger/ARMAssemblerProxy.cpp')
-rw-r--r-- | libpixelflinger/codeflinger/ARMAssemblerProxy.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp b/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp index 7c422db..c57d7da 100644 --- a/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp +++ b/libpixelflinger/codeflinger/ARMAssemblerProxy.cpp @@ -199,5 +199,9 @@ void ARMAssemblerProxy::UXTB16(int cc, int Rd, int Rm, int rotate) { mTarget->UXTB16(cc, Rd, Rm, rotate); } +void ARMAssemblerProxy::UBFX(int cc, int Rd, int Rn, int lsb, int width) { + mTarget->UBFX(cc, Rd, Rn, lsb, width); +} + }; // namespace android |