diff options
author | comex | 2015-01-17 20:57:59 -0500 |
---|---|---|
committer | comex | 2015-01-17 20:57:59 -0500 |
commit | 835bf8dedbdedd8a95f1eae6a9f9050a6b15bcfe (patch) | |
tree | 0847806ada129e87fa90a6ab58e27639e26989f2 /lib/transform-dis.c | |
parent | arm64 transform dis, arm fixes, move to .c since i'm dumb (diff) | |
download | substitute-835bf8dedbdedd8a95f1eae6a9f9050a6b15bcfe.tar.gz |
flip the definition of TARGET_(UN)SUPPORTED
Diffstat (limited to 'lib/transform-dis.c')
-rw-r--r-- | lib/transform-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/transform-dis.c b/lib/transform-dis.c index b8df987..32c012b 100644 --- a/lib/transform-dis.c +++ b/lib/transform-dis.c @@ -1,5 +1,5 @@ #include "substitute-internal.h" -#ifndef TARGET_UNSUPPORTED +#ifdef TARGET_SUPPORTED #include "substitute.h" #include "dis.h" @@ -121,4 +121,4 @@ static inline void op32(struct transform_dis_ctx *ctx, uint32_t op) { #endif #include TARGET_DIS_HEADER -#endif /* TARGET_UNSUPPORTED */ +#endif /* TARGET_SUPPORTED */ |