diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-11-05 19:32:46 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-11-05 19:32:46 +0000 |
commit | e623702c22e7cee4e02332b245a417a88ae6ffff (patch) | |
tree | b1fcd57b8be41d13cb6a4d4d0ef12500e4c639fe /test/Analysis/CostModel/X86/arith.ll | |
parent | 6837232a609fe7b13473606a1c8a18eabfe2df2a (diff) |
Implement the cost of abnormal x86 instruction lowering as a table.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/CostModel/X86/arith.ll')
-rw-r--r-- | test/Analysis/CostModel/X86/arith.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Analysis/CostModel/X86/arith.ll b/test/Analysis/CostModel/X86/arith.ll index 58b4a7c426..37cca8d540 100644 --- a/test/Analysis/CostModel/X86/arith.ll +++ b/test/Analysis/CostModel/X86/arith.ll @@ -12,6 +12,8 @@ define i32 @add(i32 %arg) { %C = add <2 x i64> undef, undef ;CHECK: cost of 4 {{.*}} add %D = add <4 x i64> undef, undef + ;CHECK: cost of 8 {{.*}} add + %E = add <8 x i64> undef, undef ;CHECK: cost of 1 {{.*}} ret ret i32 undef } |