Displaying 1 result from an estimated 1 matches for "r182332".
2013 Nov 01
2
[LLVMdev] labels commented out
I happened to try building LLVM without assertions today,
and it changed the form of the LLVM IR that gets generated.
Typically, I do something like
clang -O -emit-llvm -S Test.c
For source like
typedef struct node {
struct node *left;
struct node *right;
int key;
} Tree;
int sum(Tree *p) {
int s = 0;
if (p) {
s += sum(p->left);
s += sum(p->right);
s +=