diff options
| author | 2011-05-02 14:31:28 -0700 | |
|---|---|---|
| committer | 2011-05-02 14:31:28 -0700 | |
| commit | 0be97d8b5e4cd3642eff920e003e4f134ddf6d43 (patch) | |
| tree | 91902ecec60c5fe9e2727db79e5c60f86843e339 /libs/rs | |
| parent | eccf6c6483564bbe21020e2affb490ced2345e5e (diff) | |
Temporarly disable auto-inbanding.
Change-Id: Ia83389c094914f0bb69bff8f6965ae445c89de07
Diffstat (limited to 'libs/rs')
| -rw-r--r-- | libs/rs/rsg_generator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/rs/rsg_generator.c b/libs/rs/rsg_generator.c index 239795d52055..0e914fc30f44 100644 --- a/libs/rs/rsg_generator.c +++ b/libs/rs/rsg_generator.c @@ -157,7 +157,8 @@ void printPlaybackFuncs(FILE *f, const char *prefix) { static int hasInlineDataPointers(const ApiEntry * api) { int ret = 0; int ct; - if (api->sync || api->ret.typeName[0]) { + // Temporarly disable inbanding while we sort though the bugs. + if (1|| api->sync || api->ret.typeName[0]) { return 0; } for (ct=0; ct < api->paramCount; ct++) { |