diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-09-11 10:21:25 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-09-11 10:21:25 +0000 |
commit | 1ec3e4e4bd31902a637eaa9c88d8651c3182d4b5 (patch) | |
tree | 67dace8853a696f2c95eb205de6e23927e8beb9f | |
parent | f83e1f7f6681e02b8f6d661ade76ddf10d55fd40 (diff) | |
download | bcm5719-llvm-1ec3e4e4bd31902a637eaa9c88d8651c3182d4b5.tar.gz bcm5719-llvm-1ec3e4e4bd31902a637eaa9c88d8651c3182d4b5.zip |
[x86] Fixup r217565 which baked in an assumption about the function
name that breaks on some platforms. This part of the test just doesn't
matter...
llvm-svn: 217575
-rw-r--r-- | llvm/test/CodeGen/X86/vec_extract.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/vec_extract.ll b/llvm/test/CodeGen/X86/vec_extract.ll index 2e369828c5b..93380427f49 100644 --- a/llvm/test/CodeGen/X86/vec_extract.ll +++ b/llvm/test/CodeGen/X86/vec_extract.ll @@ -40,7 +40,7 @@ entry: define double @test4(double %A) nounwind { ; CHECK-LABEL: test4: -; CHECK: calll foo +; CHECK: calll {{.*}}foo ; CHECK-NEXT: unpckhpd %[[X:xmm[0-9]+]], %[[X]] ; CHECK-NEXT: addsd {{.*}}(%{{.*}}), %[[X2]] ; CHECK-NEXT: movsd %[[X2]], [[mem:.*\(%.*\)]] |