Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / utils / update_cc_test_checks / Inputs / mangled_names.c
blob01e42a35e78e57f2c7449f8d3cee08d461ea4c84
1 // Example input for update_cc_test_checks
2 // RUN: %clang_cc1 -triple=x86_64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
4 long test(long a, int b) {
5 return a + b;
8 // A function with a mangled name
9 __attribute__((overloadable)) long test(long a, int b, int c) {
10 return a + b + c;