From 5dd4391c66dd04b7715898c50054a29d4bd0f4c8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 1 Dec 2006 21:38:02 +0000 Subject: [PATCH] fix incorrectly translated testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32093 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/IPConstantProp/return-constant.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Transforms/IPConstantProp/return-constant.ll b/test/Transforms/IPConstantProp/return-constant.ll index f779d76af12..50c55d88bfb 100644 --- a/test/Transforms/IPConstantProp/return-constant.ll +++ b/test/Transforms/IPConstantProp/return-constant.ll @@ -11,6 +11,6 @@ F: bool %caller(bool %C) { %X = call int %foo(bool %C) - %Y = trunc int %X to bool + %Y = setne int %X, 0 ret bool %Y }