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 | 4793515a9ce9d799741346e4408015b1ab4d0879 (patch) | |
tree | a851f79e3e06c5cbf03f44f398885a92408be424 /llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp | |
parent | 724539c001c6324f9034a2e2345e34a5e276c3a0 (diff) | |
download | bcm5719-llvm-4793515a9ce9d799741346e4408015b1ab4d0879.tar.gz bcm5719-llvm-4793515a9ce9d799741346e4408015b1ab4d0879.zip |
Move a bunch of inline asm code out of line.
llvm-svn: 50313
Diffstat (limited to 'llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp b/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp index 4be37a33cf4..cdabadeb362 100644 --- a/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp @@ -962,7 +962,7 @@ bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS, } // Compute the constraint code and ConstraintType to use. - OpInfo.ComputeConstraintToUse(*TLI); + TLI->ComputeConstraintToUse(OpInfo); if (OpInfo.ConstraintType == TargetLowering::C_Memory && OpInfo.isIndirect) { |