12 lines · c
1// Example input for update_cc_test_checks2// RUN: %clang_cc1 -triple=x86_64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s3 4long test(long a, int b) {5 return a + b;6}7 8// A function with a mangled name9__attribute__((overloadable)) long test(long a, int b, int c) {10 return a + b + c;11}12