Skip to content
Snippets Groups Projects
Commit 6fa37537 authored by Nick Lewycky's avatar Nick Lewycky
Browse files

Update test for change in r185735.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185736 91177308-0d34-0410-b5e6-96231b3b80d8
parent 454ab974
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ double test_f64(double f, double g) { ...@@ -123,7 +123,7 @@ double test_f64(double f, double g) {
long double test_f128(long double f, long double g) { long double test_f128(long double f, long double g) {
asm("axbr %0, %2" : "=f" (f) : "0" (f), "f" (g)); asm("axbr %0, %2" : "=f" (f) : "0" (f), "f" (g));
return f; return f;
// CHECK: define void @test_f128(fp128* noalias nocapture sret [[DEST:%.*]], fp128* byval nocapture, fp128* byval nocapture) // CHECK: define void @test_f128(fp128* noalias nocapture sret [[DEST:%.*]], fp128* byval nocapture readonly, fp128* byval nocapture readonly)
// CHECK: %f = load fp128* %0 // CHECK: %f = load fp128* %0
// CHECK: %g = load fp128* %1 // CHECK: %g = load fp128* %1
// CHECK: [[RESULT:%.*]] = tail call fp128 asm "axbr $0, $2", "=f,0,f"(fp128 %f, fp128 %g) // CHECK: [[RESULT:%.*]] = tail call fp128 asm "axbr $0, $2", "=f,0,f"(fp128 %f, fp128 %g)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment