diff options
Diffstat (limited to 'test/Transforms/InstCombine/apint-call-cast-target.ll')
-rw-r--r-- | test/Transforms/InstCombine/apint-call-cast-target.ll | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/apint-call-cast-target.ll b/test/Transforms/InstCombine/apint-call-cast-target.ll index fe336de75242..4e98f9b2b3ac 100644 --- a/test/Transforms/InstCombine/apint-call-cast-target.ll +++ b/test/Transforms/InstCombine/apint-call-cast-target.ll @@ -1,16 +1,19 @@ -; RUN: opt < %s -instcombine -S | grep call | not grep bitcast +; RUN: opt < %s -instcombine -S | FileCheck %s target datalayout = "e-p:32:32" target triple = "i686-pc-linux-gnu" - define i32 @main() { +; CHECK-LABEL: @main( +; CHECK: call i32 bitcast entry: %tmp = call i32 bitcast (i7* (i999*)* @ctime to i32 (i99*)*)( i99* null ) ret i32 %tmp } define i7* @ctime(i999*) { +; CHECK-LABEL: @ctime( +; CHECK: call i7* bitcast entry: %tmp = call i7* bitcast (i32 ()* @main to i7* ()*)( ) ret i7* %tmp |