diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-01 21:38:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-01 21:38:02 +0000 |
commit | 5dd4391c66dd04b7715898c50054a29d4bd0f4c8 (patch) | |
tree | fd5ae9467119724b91f0e712b6aa79ce9dbcbe56 /test/Transforms/IPConstantProp | |
parent | 16244f40268c498d0641d41f01d1c18bb8d9d1fb (diff) | |
download | external_llvm-5dd4391c66dd04b7715898c50054a29d4bd0f4c8.zip external_llvm-5dd4391c66dd04b7715898c50054a29d4bd0f4c8.tar.gz external_llvm-5dd4391c66dd04b7715898c50054a29d4bd0f4c8.tar.bz2 |
fix incorrectly translated testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/IPConstantProp')
-rw-r--r-- | test/Transforms/IPConstantProp/return-constant.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/IPConstantProp/return-constant.ll b/test/Transforms/IPConstantProp/return-constant.ll index f779d76..50c55d8 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 } |