diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-16 14:30:09 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-16 14:30:09 +0000 |
commit | aba2d6d0518280e2e64a895c005bea067f603f5e (patch) | |
tree | ac9b7ab2e57b19e05b3c512aa3e7f0822c119f99 /test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll | |
parent | 5a2afad335ff76ca9f2a0a4bb2a62e10763586d1 (diff) | |
download | external_llvm-aba2d6d0518280e2e64a895c005bea067f603f5e.zip external_llvm-aba2d6d0518280e2e64a895c005bea067f603f5e.tar.gz external_llvm-aba2d6d0518280e2e64a895c005bea067f603f5e.tar.bz2 |
Extend test to check the .cfi instructions.
I am about to refactor the calls to addFrameMove and some of the ppc
ones were not being tested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll')
-rw-r--r-- | test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll b/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll index ecf45ef..3d3728d 100644 --- a/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll +++ b/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll @@ -1,9 +1,23 @@ -; RUN: llc < %s +; RUN: llc < %s | FileCheck %s ;; Formerly crashed, see PR 1508 target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128" target triple = "powerpc64-apple-darwin8" %struct.Range = type { i64, i64 } +; CHECK: .cfi_startproc +; CHECK: .cfi_personality 155, L___gxx_personality_v0$non_lazy_ptr +; CHECK: .cfi_lsda 16, Lexception0 +; CHECK: .cfi_def_cfa_offset 176 +; CHECK: .cfi_offset r31, -8 +; CHECK: .cfi_offset lr, 16 +; CHECK: .cfi_def_cfa_register r31 +; CHECK: .cfi_offset r27, -16 +; CHECK: .cfi_offset r28, -24 +; CHECK: .cfi_offset r29, -32 +; CHECK: .cfi_offset r30, -40 +; CHECK: .cfi_endproc + + define void @Bork(i64 %range.0.0, i64 %range.0.1, i64 %size) { entry: %effectiveRange = alloca %struct.Range, align 8 ; <%struct.Range*> [#uses=2] |