[llvm] r255457 - Add the missing header file <cstdint> needed by uint64_t

Cong Hou via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 13 01:55:42 PST 2015


OK. This is committed as 255458. Thanks!

thanks,
Cong


On Sun, Dec 13, 2015 at 1:44 AM, Hal Finkel <hfinkel at anl.gov> wrote:
> ----- Original Message -----
>> From: "Cong Hou via llvm-commits" <llvm-commits at lists.llvm.org>
>> To: llvm-commits at lists.llvm.org
>> Sent: Sunday, December 13, 2015 3:32:21 AM
>> Subject: [llvm] r255457 - Add the missing header file <cstdint> needed by uint64_t
>>
>> Author: conghou
>> Date: Sun Dec 13 03:32:21 2015
>> New Revision: 255457
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=255457&view=rev
>> Log:
>> Add the missing header file <cstdint> needed by uint64_t
>
> We don't depend on <cstdint> for uint64_t, but rather make sure that uint64_t is available via include/llvm/Support/DataTypes.h; please use that instead.
>
>  -Hal
>
>>
>> Modified:
>>     llvm/trunk/lib/CodeGen/MachineBasicBlock.cpp
>>
>> Modified: llvm/trunk/lib/CodeGen/MachineBasicBlock.cpp
>> URL:
>> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineBasicBlock.cpp?rev=255457&r1=255456&r2=255457&view=diff
>> ==============================================================================
>> --- llvm/trunk/lib/CodeGen/MachineBasicBlock.cpp (original)
>> +++ llvm/trunk/lib/CodeGen/MachineBasicBlock.cpp Sun Dec 13 03:32:21
>> 2015
>> @@ -34,6 +34,7 @@
>>  #include "llvm/Target/TargetRegisterInfo.h"
>>  #include "llvm/Target/TargetSubtargetInfo.h"
>>  #include <algorithm>
>> +#include <cstdint>
>>  using namespace llvm;
>>
>>  #define DEBUG_TYPE "codegen"
>>
>>
>> _______________________________________________
>> llvm-commits mailing list
>> llvm-commits at lists.llvm.org
>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>>
>
> --
> Hal Finkel
> Assistant Computational Scientist
> Leadership Computing Facility
> Argonne National Laboratory


More information about the llvm-commits mailing list