Skip to content

Commit

Permalink
Update the test to use FileCheck.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205647 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ributzka committed Apr 4, 2014
1 parent f2decb2 commit 7330dcb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/Transforms/ConstantHoisting/X86/delete-dead-cast-inst.ll
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
; Test if this compiles without assertions.
; RUN: opt -S -consthoist < %s
; RUN: opt -S -consthoist < %s | FileCheck %s

target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.9.0"

%T = type { i32, i32, i32, i32 }

define i32 @test1() nounwind {
; CHECK-LABEL: @test1
; CHECK: %const = bitcast i32 12345678 to i32
; CHECK-NOT: %base = inttoptr i32 12345678 to %T*
; CHECK-NEXT: %1 = inttoptr i32 %const to %T*
; CHECK-NEXT: %addr1 = getelementptr %T* %1, i32 0, i32 1
; CHECK-NEXT: %addr2 = getelementptr %T* %1, i32 0, i32 2
; CHECK-NEXT: %addr3 = getelementptr %T* %1, i32 0, i32 3
%base = inttoptr i32 12345678 to %T*
%addr1 = getelementptr %T* %base, i32 0, i32 1
%addr2 = getelementptr %T* %base, i32 0, i32 2
Expand Down

0 comments on commit 7330dcb

Please sign in to comment.