Lines Matching defs:o
1 // RUN: %clang_cc1 -std=c++11 -triple i686-windows-msvc -emit-llvm %s -o - | FileCheck %s --check-prefix=WINDOWS
2 // RUN: %clang_cc1 -std=c++11 -triple x86_64-windows-msvc -emit-llvm %s -o - | FileCheck %s --check-prefix=WINDOWS64
3 // RUN: %clang_cc1 -std=c++11 -triple x86_64-pc-linux -emit-llvm %s -o - | FileCheck %s --check-prefix=LINUX
4 // RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-macos -emit-llvm %s -o - | FileCheck %s --check-prefix=DARWIN
8 Foo(const Foo &o);
12 int __attribute__((target("default"))) bar(Foo o) { return o.x; }
13 int __attribute__((target("sse4.2"))) bar(Foo o) { return o.x + 1; }
14 int __attribute__((target("arch=ivybridge"))) bar(Foo o) { return o.x + 2; }