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/jump-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/jump-dis.c')
-rw-r--r-- | lib/jump-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/jump-dis.c b/lib/jump-dis.c index b6ddd13..beb6ffc 100644 --- a/lib/jump-dis.c +++ b/lib/jump-dis.c @@ -1,5 +1,5 @@ #include "substitute-internal.h" -#ifndef TARGET_UNSUPPORTED +#ifdef TARGET_SUPPORTED #include "dis.h" #include <stdint.h> #include <stdbool.h> @@ -162,4 +162,4 @@ fail: } #include TARGET_DIS_HEADER -#endif /* TARGET_UNSUPPORTED */ +#endif /* TARGET_SUPPORTED */ |