Commit 4ed485a5 authored by Jeff Garzik's avatar Jeff Garzik

Typo fix for linux/compiler.h.

(a few csets later on this is auto-merged away)
parent 9f2adacb
......@@ -15,7 +15,7 @@
/* This macro obfuscates arithmetic on a variable address so that gcc
shouldn't recognize the original var, and make assumptions about it */
strcpy(s, "xxx"+X) => memcpy(s, "xxx"+X, 4-X) */
/* strcpy(s, "xxx"+X) => memcpy(s, "xxx"+X, 4-X) */
#define RELOC_HIDE(var, off) \
({ __typeof__(&(var)) __ptr; \
__asm__ ("" : "=g"(__ptr) : "0"((void *)&(var) + (off))); \
......
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