summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorManman Ren <manman.ren@gmail.com>2013-11-01 18:06:25 +0000
committerManman Ren <manman.ren@gmail.com>2013-11-01 18:06:25 +0000
commitcc14cb31d4ce9250b128811cc72545698286296e (patch)
treec9c0572ac08e45ab80bad72879e2643219440823 /test
parent2e110c3fa62bce0182c1635964f5e09e34e3cbb5 (diff)
downloadllvm-cc14cb31d4ce9250b128811cc72545698286296e.tar.gz
llvm-cc14cb31d4ce9250b128811cc72545698286296e.tar.bz2
llvm-cc14cb31d4ce9250b128811cc72545698286296e.tar.xz
Add comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193874 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/Inline/inline_invoke_with_asm_call.ll2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Transforms/Inline/inline_invoke_with_asm_call.ll b/test/Transforms/Inline/inline_invoke_with_asm_call.ll
index c1fb57d26b..876f8d7455 100644
--- a/test/Transforms/Inline/inline_invoke_with_asm_call.ll
+++ b/test/Transforms/Inline/inline_invoke_with_asm_call.ll
@@ -1,6 +1,8 @@
; RUN: opt < %s -inline -S | FileCheck %s
target triple = "x86_64-apple-darwin"
+; In inliner, we assume that inline asm does not throw. This testing case makes
+; sure that the inliner does not convert "call asm" to "invoke asm".
; rdar://15317907
; CHECK-LABEL: @caller
; Make sure we are generating "call asm" instead of "invoke asm".