From 47245422a45e1a2e89f402e745c6fbfa63d25c6e Mon Sep 17 00:00:00 2001 From: John Thompson Date: Fri, 29 Oct 2010 23:37:38 +0000 Subject: [PATCH] Mult-alt constraint incremental development step 3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117746 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/InlineAsm.h | 8 ++++---- include/llvm/Target/TargetLowering.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/llvm/InlineAsm.h b/include/llvm/InlineAsm.h index 93438343255..4ca012e9746 100644 --- a/include/llvm/InlineAsm.h +++ b/include/llvm/InlineAsm.h @@ -16,8 +16,8 @@ #ifndef LLVM_INLINEASM_H #define LLVM_INLINEASM_H -#include "llvm/ADT/SmallVector.h" #include "llvm/Value.h" +#include namespace llvm { @@ -87,7 +87,7 @@ public: isClobber // '~x' }; - typedef SmallVector ConstraintCodeVector; + typedef std::vector ConstraintCodeVector; struct SubConstraintInfo { /// MatchingInput - If this is not -1, this is an output constraint where an @@ -102,9 +102,9 @@ public: SubConstraintInfo() : MatchingInput(-1) {} }; - typedef SmallVector SubConstraintInfoVector; + typedef std::vector SubConstraintInfoVector; struct ConstraintInfo; - typedef SmallVector ConstraintInfoVector; + typedef std::vector ConstraintInfoVector; struct ConstraintInfo { /// Type - The basic type of the constraint: input/output/clobber diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index d9b01314467..6cdeada2a22 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1381,7 +1381,7 @@ public: } }; - typedef SmallVector AsmOperandInfoVector; + typedef std::vector AsmOperandInfoVector; /// ParseConstraints - Split up the constraint string from the inline /// assembly value into the specific constraints and their prefixes,