Commit 210ec105 authored by michael's avatar michael

this code will not work with PIC as it needs 7 registers and gcc doesnt support that in PIC


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6703 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 822d7a14
......@@ -362,7 +362,7 @@ static inline void renorm_cabac_decoder_once(CABACContext *c){
static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state){
//FIXME gcc generates duplicate load/stores for c->low and c->range
#ifdef ARCH_X86
#if defined(ARCH_X86) && !defined(PIC)
int bit;
#define LOW "0"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment