comparison clang/test/CodeGenCXX/implicit-function-conversion.cpp @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents 1d019706d866
children
comparison
equal deleted inserted replaced
172:9fbae9c8bf63 173:0572611fdcc8
1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-unknown-linux -std=c++17 | FileCheck %s 1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-unknown-linux -std=c++17 | FileCheck %s
2 2
3 double a(double) noexcept; 3 double a(double) noexcept;
4 int b(double (&)(double)); 4 int b(double (&)(double));
5 5
6 // CHECK: call i32 @_Z1bRFddE(double (double)* @_Z1ad) 6 // CHECK: call i32 @_Z1bRFddE(double (double)* nonnull @_Z1ad)
7 int c = b(a); 7 int c = b(a);