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
[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git]
/
llvm
/
test
/
Examples
/
Kaleidoscope
/
Chapter4.test
blob
3d1ab54543f5a2f67260248f64cc5bcb58165b94
1
# RUN: Kaleidoscope-Ch4 < %s 2>&1 | FileCheck %s
2
# REQUIRES: default_triple
3
4
# Test basic definition, binding, and execution.
5
def foo(x) x + 1;
6
def bar(x) foo(2 * x);
7
bar(2);
8
# CHECK: Evaluated to 5.000000
9