[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-ctor2.cpp
blob95b0608dadc813751f70ed6e216ebdb73f31c73f
1 // FIXME: Check IR rather than asm, then triple is not needed.
2 // RUN: %clang --target=%itanium_abi_triple -fverbose-asm -g -S %s -o - | grep AT_explicit
5 class MyClass
7 public:
8 explicit MyClass (int i) :
9 m_i (i)
11 private:
12 int m_i;
15 MyClass m(1);