mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 22:44:30 +02:00
dsp/mips: add whitespace around stringizing operator
fixes compile with gcc 5.1 BUG=259 Change-Id: Ideb39c6290ab8569b1b6cc835bea11c822d0286c
This commit is contained in:
@ -34,15 +34,15 @@
|
||||
G = G - t2 + kGCst; \
|
||||
B = B + kBCst; \
|
||||
__asm__ volatile ( \
|
||||
"shll_s.w %["#R"], %["#R"], 9 \n\t" \
|
||||
"shll_s.w %["#G"], %["#G"], 9 \n\t" \
|
||||
"shll_s.w %["#B"], %["#B"], 9 \n\t" \
|
||||
"precrqu_s.qb.ph %["#R"], %["#R"], $zero \n\t" \
|
||||
"precrqu_s.qb.ph %["#G"], %["#G"], $zero \n\t" \
|
||||
"precrqu_s.qb.ph %["#B"], %["#B"], $zero \n\t" \
|
||||
"srl %["#R"], %["#R"], 24 \n\t" \
|
||||
"srl %["#G"], %["#G"], 24 \n\t" \
|
||||
"srl %["#B"], %["#B"], 24 \n\t" \
|
||||
"shll_s.w %[" #R "], %[" #R "], 9 \n\t" \
|
||||
"shll_s.w %[" #G "], %[" #G "], 9 \n\t" \
|
||||
"shll_s.w %[" #B "], %[" #B "], 9 \n\t" \
|
||||
"precrqu_s.qb.ph %[" #R "], %[" #R "], $zero \n\t" \
|
||||
"precrqu_s.qb.ph %[" #G "], %[" #G "], $zero \n\t" \
|
||||
"precrqu_s.qb.ph %[" #B "], %[" #B "], $zero \n\t" \
|
||||
"srl %[" #R "], %[" #R "], 24 \n\t" \
|
||||
"srl %[" #G "], %[" #G "], 24 \n\t" \
|
||||
"srl %[" #B "], %[" #B "], 24 \n\t" \
|
||||
: [R]"+r"(R), [G]"+r"(G), [B]"+r"(B) \
|
||||
: \
|
||||
); \
|
||||
|
Reference in New Issue
Block a user