diff options
author | Alex Rosenberg <alexr@leftfield.org> | 2015-01-26 19:09:27 +0000 |
---|---|---|
committer | Alex Rosenberg <alexr@leftfield.org> | 2015-01-26 19:09:27 +0000 |
commit | b9fefdd215845d609f6afc30967257a8fd8ac0a8 (patch) | |
tree | 9e2ddee1b0bbd2532be447d10b51461f201c6dfb /llvm/test/CodeGen | |
parent | 577b39349e20a5ca39bd4aa04793aa1bdfd6216a (diff) | |
download | bcm5719-llvm-b9fefdd215845d609f6afc30967257a8fd8ac0a8.tar.gz bcm5719-llvm-b9fefdd215845d609f6afc30967257a8fd8ac0a8.zip |
Use a different encoding for debugtrap on PS4.
llvm-svn: 227116
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/X86/trap.ll | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/trap.ll b/llvm/test/CodeGen/X86/trap.ll index 149c667c8cb..ca33f9e6b4e 100644 --- a/llvm/test/CodeGen/X86/trap.ll +++ b/llvm/test/CodeGen/X86/trap.ll @@ -1,15 +1,25 @@ -; RUN: llc < %s -march=x86 -mcpu=yonah | FileCheck %s +; RUN: llc < %s -mtriple=i686-apple-darwin8 -mcpu=yonah | FileCheck %s -check-prefix=DARWIN +; RUN: llc < %s -mtriple=i686-unknown-linux -mcpu=yonah | FileCheck %s -check-prefix=LINUX +; RUN: llc < %s -mtriple=x86_64-scei-ps4 | FileCheck %s -check-prefix=PS4 -; CHECK-LABEL: test0: -; CHECK: ud2 +; DARWIN-LABEL: test0: +; DARWIN: ud2 +; LINUX-LABEL: test0: +; LINUX: ud2 +; PS4-LABEL: test0: +; PS4: ud2 define i32 @test0() noreturn nounwind { entry: tail call void @llvm.trap( ) unreachable } -; CHECK-LABEL: test1: -; CHECK: int3 +; DARWIN-LABEL: test1: +; DARWIN: int3 +; LINUX-LABEL: test1: +; LINUX: int3 +; PS4-LABEL: test1: +; PS4: int $65 define i32 @test1() noreturn nounwind { entry: tail call void @llvm.debugtrap( ) |