Home
last modified time | relevance | path

Searched refs:MyComplex (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/test/CodeGen/
H A Dfp-floatcontrol-stack.cpp261 struct MyComplex { struct
264 MyComplex(float x, float y) { in MyComplex() argument
268 MyComplex() {} in MyComplex() argument
269 const MyComplex operator+(const MyComplex other) const { in operator +() argument
273 return MyComplex(xx + other.xx, yy + other.yy); in operator +()
276 MyComplex useAdd() { in useAdd()
277 MyComplex a (1, 3); in useAdd()
278 MyComplex b (2, 4); in useAdd()