summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86InstrSystem.td
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 /lib/Target/X86/X86InstrSystem.td
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 'lib/Target/X86/X86InstrSystem.td')
-rw-r--r--lib/Target/X86/X86InstrSystem.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrSystem.td b/lib/Target/X86/X86InstrSystem.td
index dd1b499ddd..ea716bfd6b 100644
--- a/lib/Target/X86/X86InstrSystem.td
+++ b/lib/Target/X86/X86InstrSystem.td
@@ -36,7 +36,7 @@ let Uses = [EFLAGS] in
def INT3 : I<0xcc, RawFrm, (outs), (ins), "int3",
[(int_x86_int (i8 3))], IIC_INT3>;
-def : Pat<(debugger),
+def : Pat<(debugtrap),
(INT3)>;
// The long form of "int $3" turns into int3 as a size optimization.