diff options
| author | gingerBill <ginger.bill.22@gmail.com> | 2016-08-01 13:11:50 +0100 |
|---|---|---|
| committer | gingerBill <ginger.bill.22@gmail.com> | 2016-08-01 13:11:50 +0100 |
| commit | e5665a190d196dc6f2a9bb45be737325eaf12cf5 (patch) | |
| tree | cd74d861a7cd9e065a41c55df2f1130671b20398 /examples | |
| parent | 88e05ad2b25b51ad3f5dd92554ffbfa3eeaa57b9 (diff) | |
Big Refactor to type less :P
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/test.ll | 2 | ||||
| -rw-r--r-- | examples/test.odin | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/examples/test.ll b/examples/test.ll index 9835e90a7..82af5a836 100644 --- a/examples/test.ll +++ b/examples/test.ll @@ -1,6 +1,4 @@ define void @main() { entry: - %0 = alloca i64, align 8 ; a - store i64 zeroinitializer, i64* %0 ret void } diff --git a/examples/test.odin b/examples/test.odin index 962b48057..fd7194210 100644 --- a/examples/test.odin +++ b/examples/test.odin @@ -1,3 +1,2 @@ main :: proc() { - a : int; } |