forked from OSchip/llvm-project
Fix a warning in release builds and a test case I forgot to update with
a fix to getCommonType in the previous patch. llvm-svn: 164120
This commit is contained in:
parent
42cb9cb14f
commit
a34f3567e0
|
@ -2572,6 +2572,7 @@ private:
|
|||
Value *Store = IRB.CreateStore(
|
||||
IRB.CreateExtractValue(Agg, Indices, Name + ".extract"),
|
||||
IRB.CreateInBoundsGEP(Ptr, GEPIndices, Name + ".gep"));
|
||||
(void)Store;
|
||||
DEBUG(dbgs() << " to: " << *Store << "\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -408,7 +408,7 @@ declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
|
|||
|
||||
define i16 @test5() {
|
||||
; CHECK: @test5
|
||||
; CHECK: alloca float
|
||||
; CHECK: alloca i32
|
||||
; CHECK: ret i16 %
|
||||
|
||||
entry:
|
||||
|
|
Loading…
Reference in New Issue