1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

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 c51eeee6b8
commit 2c44c49003
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 {