1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Move llvm/Support/MDBuilder.h to llvm/MDBuilder.h, to live with

IRBuilder, DIBuilder, etc.

This is the proper layering as MDBuilder can't be used (or implemented)
without the Core Metadata representation.

Patches to Clang and Dragonegg coming up.

llvm-svn: 160237
This commit is contained in:
Chandler Carruth 2012-07-15 23:26:50 +00:00
parent 338506d265
commit 8748299227
7 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
//===---- llvm/Support/MDBuilder.h - Builder for LLVM metadata --*- C++ -*-===//
//===---- llvm/MDBuilder.h - Builder for LLVM metadata ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -12,19 +12,19 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "lower-expect-intrinsic"
#include "llvm/BasicBlock.h"
#include "llvm/Constants.h"
#include "llvm/Function.h"
#include "llvm/BasicBlock.h"
#include "llvm/LLVMContext.h"
#include "llvm/Instructions.h"
#include "llvm/Intrinsics.h"
#include "llvm/LLVMContext.h"
#include "llvm/MDBuilder.h"
#include "llvm/Metadata.h"
#include "llvm/Pass.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Transforms/Scalar.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/MDBuilder.h"
#include "llvm/ADT/Statistic.h"
#include <vector>
using namespace llvm;

View File

@ -20,6 +20,7 @@
#include "llvm/Instructions.h"
#include "llvm/IntrinsicInst.h"
#include "llvm/LLVMContext.h"
#include "llvm/MDBuilder.h"
#include "llvm/Metadata.h"
#include "llvm/Operator.h"
#include "llvm/Type.h"
@ -35,7 +36,6 @@
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ConstantRange.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/MDBuilder.h"
#include "llvm/Support/NoFolder.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Target/TargetData.h"

View File

@ -17,7 +17,6 @@ add_llvm_unittest(SupportTests
LeakDetectorTest.cpp
ManagedStatic.cpp
MathExtrasTest.cpp
MDBuilderTest.cpp
Path.cpp
raw_ostream_test.cpp
RegexTest.cpp

View File

@ -8,6 +8,7 @@ set(VMCoreSources
ConstantsTest.cpp
DominatorTreeTest.cpp
InstructionsTest.cpp
MDBuilderTest.cpp
MetadataTest.cpp
PassManagerTest.cpp
ValueMapTest.cpp

View File

@ -13,10 +13,10 @@
#include "llvm/IRBuilder.h"
#include "llvm/Instructions.h"
#include "llvm/LLVMContext.h"
#include "llvm/MDBuilder.h"
#include "llvm/Operator.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Analysis/ValueTracking.h"
#include "llvm/Support/MDBuilder.h"
#include "llvm/Target/TargetData.h"
#include "gtest/gtest.h"

View File

@ -1,4 +1,4 @@
//===- llvm/unittests/Support/MDBuilderTest.cpp - MDBuilder unit tests ----===//
//===- llvm/unittests/MDBuilderTest.cpp - MDBuilder unit tests ------------===//
//
// The LLVM Compiler Infrastructure
//
@ -8,8 +8,8 @@
//===----------------------------------------------------------------------===//
#include "llvm/IRBuilder.h"
#include "llvm/MDBuilder.h"
#include "llvm/Operator.h"
#include "llvm/Support/MDBuilder.h"
#include "gtest/gtest.h"