Joos1W Compiler Framework
Main Page
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
v
Functions
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
v
Typedefs
Files
File List
•
All
Classes
Functions
Typedefs
Pages
Value.cc
1
#
include
"tir/TIR.h"
2
3
namespace
tir {
4
5
void
Value
::dump()
const
{ print(std::cerr) <<
"\n"
; }
6
7
void
Value
::replaceAllUsesWith(
Value
* newValue) {
8
for
(
auto
user : users_) {
9
user->replaceChild(user->numChildren(), newValue);
10
}
11
}
12
13
}
// namespace tir
lib
tir
Value.cc
Generated by
1.9.1