~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/Other/2008-10-15-MissingSpace.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
 
2
; PR2894
 
3
declare void @g()
 
4
define void @f() personality i32 (...)* @__gxx_personality_v0 {
 
5
; CHECK:  invoke void @g()
 
6
; CHECK:           to label %d unwind label %c
 
7
  invoke void @g() to label %d unwind label %c
 
8
d:
 
9
  ret void
 
10
c:
 
11
  %exn = landingpad {i8*, i32}
 
12
            cleanup
 
13
  ret void
 
14
}
 
15
 
 
16
declare i32 @__gxx_personality_v0(...)