diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
commit | 0fd38069cb6699ce21eb159f22d3f23c012c9e81 (patch) | |
tree | f66dcf7ae670ad83fafd93662fe76538a2203c35 /utils/TableGen | |
parent | 35c28eca627cd9dc2dd3ee3393074080103be456 (diff) | |
download | external_llvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.zip external_llvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.tar.gz external_llvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.tar.bz2 |
improve the APIs for creating struct and function types with no arguments/elements
to not have to create a temporary vector (in the API at least). Patch by Jay Foad!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r-- | utils/TableGen/IntrinsicEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp index 2d28fb7..8c34e68 100644 --- a/utils/TableGen/IntrinsicEmitter.cpp +++ b/utils/TableGen/IntrinsicEmitter.cpp @@ -146,7 +146,7 @@ static void EmitTypeForValueType(std::ostream &OS, MVT::SimpleValueType VT) { OS << "IntegerType::get(" << BitWidth << ")"; } else if (VT == MVT::Other) { // MVT::OtherVT is used to mean the empty struct type here. - OS << "StructType::get(std::vector<const Type *>())"; + OS << "StructType::get()"; } else if (VT == MVT::f32) { OS << "Type::FloatTy"; } else if (VT == MVT::f64) { |