X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FInteger%2Fnewcasts_bt.ll;h=e2eee4f7f12e511194104979798dc562639c9835;hb=b21d9aebba7e45ddcbce61dd501000049cefb335;hp=446a00731545987981be34dbdc3d3c913650c0b3;hpb=c0948366f6cbec12d2c87f9cb4a1cea1435cf02a;p=oota-llvm.git diff --git a/test/Integer/newcasts_bt.ll b/test/Integer/newcasts_bt.ll index 446a0073154..e2eee4f7f12 100644 --- a/test/Integer/newcasts_bt.ll +++ b/test/Integer/newcasts_bt.ll @@ -2,7 +2,7 @@ ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -define void "NewCasts" (i17 %x) { +define void @"NewCasts" (i17 %x) { %a = zext i17 %x to i32 %b = sext i17 %x to i32 %c = trunc i17 %x to i8 @@ -19,10 +19,10 @@ define void "NewCasts" (i17 %x) { } -define i17 "ZExtConst" () { +define i17 @"ZExtConst" () { ret i17 trunc ( i32 zext ( i17 42 to i32) to i17 ) } -define i17 "SExtConst" () { +define i17 @"SExtConst" () { ret i17 trunc (i32 sext (i17 42 to i32) to i17 ) }