builtins: fix build

Unfortunately, int_utils.h needs to depend on int_lib for the common macro
definitions.  However, currently, int_utils.h is included by int_lib.h.  Reorder
the inclusion to work around this.

llvm-svn: 249376
This commit is contained in:
Saleem Abdulrasool 2015-10-06 04:33:08 +00:00
parent e6f9652a22
commit d2eb26c7f0
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
#include <stdlib.h>
#include <string.h>
#include "int_lib.h"
#include "int_util.h"
/* Default is not to use posix_memalign, so systems like Android

View File

@ -8,8 +8,8 @@
* ===----------------------------------------------------------------------===
*/
#include "int_util.h"
#include "int_lib.h"
#include "int_util.h"
/* NOTE: The definitions in this file are declared weak because we clients to be
* able to arbitrarily package individual functions into separate .a files. If