diff options
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/libcalls.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/libcalls.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/libcalls.ll b/llvm/test/CodeGen/WebAssembly/libcalls.ll index eb6d6c3eabd..3849f1978a2 100644 --- a/llvm/test/CodeGen/WebAssembly/libcalls.ll +++ b/llvm/test/CodeGen/WebAssembly/libcalls.ll @@ -52,9 +52,9 @@ define i128 @i128libcalls(i128 %x, i128 %y) { ; CHECK-LABEL: f64libcalls: define double @f64libcalls(double %x, double %y) { - ; CHECK: f64.call $push{{[0-9]}}=, cos@FUNCTION + ; CHECK: f64.call $push{{[0-9]}}=, cos %a = call double @llvm.cos.f64(double %x) - ; CHECK: f64.call $push{{[0-9]}}=, log10@FUNCTION + ; CHECK: f64.call $push{{[0-9]}}=, log10 %b = call double @llvm.log10.f64(double %a) ret double %b } |