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-ctor.cpp
blob
16bc54d153cd91eab1ae415de7557f5b00021167
1
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2
3
struct
X
{
4
X
(
int
v
);
5
6
int
value
;
7
};
8
9
X
::
X
(
int
v
) {
10
// CHECK_TEMPORARILY_DISABLED: call void @_ZN1XC2Ei(ptr %this1, i32 %tmp), !dbg
11
// TEMPORARY CHECK: X
12
value
=
v
;
13
}
14