commit | 895213e6bfa31d95d7dc01b388c859f8b61a2ec1 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Thu Aug 21 01:41:07 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Thu Aug 21 01:41:07 2008 +0000 |
tree | c78a618e40a923a0efe73a8525be7e91a5066fd1 | |
parent | 6e0066a16aaa8b4ca87bd319215d6811c515493a [diff] |
Basic fast-isel support for instructions with constant int operands. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55099 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index 6eeffc5..ba7e861 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll
@@ -16,10 +16,11 @@ %t3 = and i32 %t2, %s %t4 = or i32 %t3, %s %t5 = xor i32 %t4, %s + %t6 = add i32 %t5, 2 br label %exit exit: - ret i32 %t5 + ret i32 %t6 } define double @bar(double* %p, double* %q) {