repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[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
blob
95b0608dadc813751f70ed6e216ebdb73f31c73f
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
3
4
5
class
MyClass
6
{
7
public
:
8
explicit
MyClass
(
int
i
) :
9
m_i
(
i
)
10
{}
11
private
:
12
int
m_i
;
13
};
14
15
MyClass
m
(
1
);
16