[InstCombine] canonicalize (bitcast (extractelement X)) --> (extractelement(bitcast X))
[oota-llvm.git] / test / Transforms / SCCP / 2008-04-22-multiple-ret-sccp.ll
index 1b26ca9e194db7762e2d48f5b22f9c58946a4b9b..e7168dda0891ca138d2c03a70fb4e407bbed9451 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: opt < %s -sccp -S | grep {ret i32 %Z}
+; RUN: opt < %s -sccp -S | grep "ret i32 %Z"
 ; rdar://5778210
 
 declare {i32, i32} @bar(i32 %A) 
 
 define i32 @foo() {
        %X = call {i32, i32} @bar(i32 17)
-        %Y = getresult {i32, i32} %X, 0
+        %Y = extractvalue {i32, i32} %X, 0
        %Z = add i32 %Y, %Y
        ret i32 %Z
 }