mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
fix two bogus tests that the asmparser now rejects.
llvm-svn: 92303
This commit is contained in:
parent
c3422a8190
commit
83d5230121
@ -8,7 +8,7 @@ target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:1
|
||||
|
||||
define void @bar(i64 %Size) nounwind noinline {
|
||||
entry:
|
||||
%mallocsize = mul i64 8, %Size, ; <i64> [#uses=1]
|
||||
%mallocsize = mul i64 8, %Size ; <i64> [#uses=1]
|
||||
; CHECK: mul i64 %Size, 4
|
||||
%malloccall = tail call i8* @malloc(i64 %mallocsize) ; <i8*> [#uses=1]
|
||||
%.sub = bitcast i8* %malloccall to %struct.foo* ; <%struct.foo*> [#uses=1]
|
||||
|
@ -6,7 +6,7 @@
|
||||
define i32 @foo(i1 %t) {
|
||||
entry:
|
||||
call void @bar()
|
||||
br i1 %t, label %true, label %false,
|
||||
br i1 %t, label %true, label %false
|
||||
true:
|
||||
call void @bar()
|
||||
br label %false
|
||||
|
Loading…
Reference in New Issue
Block a user