diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-27 00:09:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-27 00:09:47 +0000 |
commit | 4376fea6631d41fff3f2a7c6186faed9eff59619 (patch) | |
tree | 1af25ffe029f0d7ad122e1a1c2eac23135fcdbd9 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 5e764233f398b6929b67701672a5e78fec20ce2e (diff) |
Move a bunch of inline asm code out of line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 22e8ad8ef0..888d4605bd 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -3824,7 +3824,7 @@ void SelectionDAGLowering::visitInlineAsm(CallSite CS) { OpInfo.ConstraintVT = OpVT; // Compute the constraint code and ConstraintType to use. - OpInfo.ComputeConstraintToUse(TLI); + TLI.ComputeConstraintToUse(OpInfo); // Keep track of whether we see an earlyclobber. SawEarlyClobber |= OpInfo.isEarlyClobber; |