From: Anton Korobeynikov Date: Mon, 23 Apr 2012 09:02:13 +0000 (+0000) Subject: Do not use stdint.h, driver might provide invalid location for it. Instead, provide... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8063c33d8d8e38e864a712b1bff6d67584558f6;p=clang Do not use stdint.h, driver might provide invalid location for it. Instead, provide the types directly. This should fix PR12628 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155342 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/arm-homogenous.c b/test/CodeGen/arm-homogenous.c index 814fde5760..eb3d5a6bd6 100644 --- a/test/CodeGen/arm-homogenous.c +++ b/test/CodeGen/arm-homogenous.c @@ -1,5 +1,7 @@ // RUN: %clang_cc1 -triple armv7---eabi -target-abi aapcs -mfloat-abi hard -emit-llvm %s -o - | FileCheck %s -#include + +typedef long long int64_t; +typedef unsigned int uint32_t; /* This is not a homogenous aggregate - fundamental types are different */ typedef union {