2008-07-30から1日間の記事一覧

LLVM-2.X系の文法

1.X系から大きく変わってます。 http://llvm.org/releases/2.2/docs/LangRef.html Cコードhellostruct.c int puts(const char*); struct Hello { int age; char* name; }; int main() { struct Hello hello; hello.age = 15; hello.name = "Taro"; puts(hell…