FPEnv.h - reduce includes to forward declarations. NFC.

Ensure FPEnv.cpp includes FPEnv.h first to check for hidden dependencies.
This commit is contained in:
Simon Pilgrim 2020-06-25 11:40:25 +01:00
parent bc7eb9010f
commit e367c0081c
2 changed files with 3 additions and 4 deletions

View File

@ -15,12 +15,11 @@
#ifndef LLVM_IR_FLOATINGPOINT_H
#define LLVM_IR_FLOATINGPOINT_H
#include "llvm/ADT/APFloat.h"
#include "llvm/ADT/FloatingPointMode.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/StringRef.h"
#include <stdint.h>
namespace llvm {
class StringRef;
namespace fp {

View File

@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/StringSwitch.h"
#include "llvm/IR/FPEnv.h"
#include "llvm/ADT/StringSwitch.h"
namespace llvm {