Make DataLayout Non-Optional in the Module
[oota-llvm.git] / test / Transforms / InstCombine / idioms.ll
index 6b3567fc6e8d69c82673fdf63d8b25ef5034f040..58485442230c1efb80105a4428bffffd43a9afca 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -instcombine %s -S | FileCheck %s
+; RUN: opt -instcombine -S < %s | FileCheck %s
 
 ; Check that code corresponding to the following C function is
 ; simplified into a single ASR operation:
@@ -25,7 +25,7 @@ bb3:
 bb4:
         %f = phi i32 [ %not2, %bb2 ], [ %e, %bb3 ]
        ret i32 %f
-; CHECK: @test_asr
+; CHECK-LABEL: @test_asr(
 ; CHECK: bb4:
 ; CHECK: %f = ashr i32 %a, %b
 ; CHECK: ret i32 %f