Rename @llvm.debugger to @llvm.debugtrap.

llvm-svn: 156774
diff --git a/llvm/lib/Target/X86/X86InstrSystem.td b/llvm/lib/Target/X86/X86InstrSystem.td
index dd1b499..ea716bf 100644
--- a/llvm/lib/Target/X86/X86InstrSystem.td
+++ b/llvm/lib/Target/X86/X86InstrSystem.td
@@ -36,7 +36,7 @@
 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.