blob: 01e42a35e78e57f2c7449f8d3cee08d461ea4c84 [file] [log] [blame]
// Example input for update_cc_test_checks
// RUN: %clang_cc1 -triple=x86_64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
long test(long a, int b) {
return a + b;
}
// A function with a mangled name
__attribute__((overloadable)) long test(long a, int b, int c) {
return a + b + c;
}