diff options
author | Duncan Sands <baldrick@free.fr> | 2007-12-17 18:08:19 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-12-17 18:08:19 +0000 |
commit | b5a79d0eaa83baf7c73f89fedef4f865de0208d2 (patch) | |
tree | 69c622c192c7c0d449022af51063e41682da41da /llvm/lib/Transforms | |
parent | 77b713b5d3c96e8759713769e5b2fefabc49079c (diff) | |
download | bcm5719-llvm-b5a79d0eaa83baf7c73f89fedef4f865de0208d2.tar.gz bcm5719-llvm-b5a79d0eaa83baf7c73f89fedef4f865de0208d2.zip |
Make invokes of inline asm legal. Teach codegen
how to lower them (with no attempt made to be
efficient, since they should only occur for
unoptimized code).
llvm-svn: 45108
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index e88eb942826..69d0e12a37c 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -69,9 +69,8 @@ static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock, if (!isa<CallInst>(I)) continue; CallInst *CI = cast<CallInst>(I); - // If this call cannot unwind or is an inline asm, don't - // convert it to an invoke. - if (CI->isNoUnwind() || isa<InlineAsm>(CI->getCalledValue())) + // If this call cannot unwind, don't convert it to an invoke. + if (CI->isNoUnwind()) continue; // Convert this function call into an invoke instruction. |