summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/trap.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2012-05-14 18:58:10 +0000
committerDan Gohman <gohman@apple.com>2012-05-14 18:58:10 +0000
commita6063c6e29746d9425bdf46d680e28a48dcf58f9 (patch)
treec79e1e95b6433d484b399f9857ea69395c274511 /test/CodeGen/X86/trap.ll
parent19e7421243df6456dcebc47a650bd37e09b1f92f (diff)
downloadllvm-a6063c6e29746d9425bdf46d680e28a48dcf58f9.tar.gz
llvm-a6063c6e29746d9425bdf46d680e28a48dcf58f9.tar.bz2
llvm-a6063c6e29746d9425bdf46d680e28a48dcf58f9.tar.xz
Rename @llvm.debugger to @llvm.debugtrap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/trap.ll')
-rw-r--r--test/CodeGen/X86/trap.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/trap.ll b/test/CodeGen/X86/trap.ll
index 2020516a88..3f44be0b50 100644
--- a/test/CodeGen/X86/trap.ll
+++ b/test/CodeGen/X86/trap.ll
@@ -12,10 +12,10 @@ entry:
; CHECK: int3
define i32 @test1() noreturn nounwind {
entry:
- tail call void @llvm.debugger( )
+ tail call void @llvm.debugtrap( )
unreachable
}
declare void @llvm.trap() nounwind
-declare void @llvm.debugger() nounwind
+declare void @llvm.debugtrap() nounwind