1 //===-- CGBuilder.h - Choose IRBuilder implementation ----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef CLANG_CODEGEN_CGBUILDER_H
11 #define CLANG_CODEGEN_CGBUILDER_H
13 #include "llvm/Support/IRBuilder.h"
17 // Don't preserve names on values in an optimized build.
19 typedef llvm::IRBuilder
<false> CGBuilderTy
;
21 typedef llvm::IRBuilder
<> CGBuilderTy
;
23 } // end namespace CodeGen
24 } // end namespace clang