[X86] X86ISelDAGToDAG.cpp - include cstdint instead of stdint.h NFCI.

Fixes clang-tidy warning
This commit is contained in:
Simon Pilgrim 2021-03-05 14:02:00 +00:00
parent f11f86c114
commit 87d5b34c24
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/KnownBits.h"
#include "llvm/Support/MathExtras.h"
#include <stdint.h>
#include <cstdint>
using namespace llvm;
#define DEBUG_TYPE "x86-isel"