2007-07-09 13:42:32 +00:00
|
|
|
; RUN: llvm-as < %s | \
|
2007-09-20 18:03:23 +00:00
|
|
|
; RUN: llc -march=arm -mtriple=arm-apple-darwin
|
2007-07-09 13:42:32 +00:00
|
|
|
; RUN: llvm-as < %s | \
|
2007-09-20 18:03:23 +00:00
|
|
|
; RUN: llc -march=arm -mtriple=arm-apple-darwin | \
|
2007-08-15 13:36:28 +00:00
|
|
|
; RUN: grep ldmne | count 1
|
2007-06-20 18:26:15 +00:00
|
|
|
|
|
|
|
%struct.SString = type { i8*, i32, i32 }
|
|
|
|
|
|
|
|
declare void @abort()
|
|
|
|
|
2007-07-19 23:13:04 +00:00
|
|
|
define fastcc void @t(%struct.SString* %word, i8 signext %c) {
|
2007-06-20 18:26:15 +00:00
|
|
|
entry:
|
|
|
|
%tmp1 = icmp eq %struct.SString* %word, null ; <i1> [#uses=1]
|
|
|
|
br i1 %tmp1, label %cond_true, label %cond_false
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
|
|
|
tail call void @abort( )
|
|
|
|
unreachable
|
|
|
|
|
|
|
|
cond_false: ; preds = %entry
|
|
|
|
ret void
|
|
|
|
}
|