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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
try-catch.cpp
blob
5e9319c5daca434ad3168a8a9a83419af8cde1e0
1
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -fcxx-exceptions -fexceptions | FileCheck %s
2
3
struct
X
{ };
4
5
const
X
g
();
6
7
void
f
() {
8
try
{
9
throw
g
();
10
// CHECK: @_ZTI1X
11
}
catch
(
const
X x
) {
12
}
13
}
14
15
void
h
() {
16
try
{
17
throw
"ABC"
;
18
// CHECK: @_ZTIPKc
19
}
catch
(
char const
(&)[
4
]) {
20
}
21
}