diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-24 13:34:50 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-24 13:36:29 -0400 |
commit | ddd4f43a391ddbdaab747cbeb749a52b277236c7 (patch) | |
tree | 388cc7571414b6aff4f525c734e1c4d1619b355b /doc | |
parent | 993ca957ef56fefbb604aceb50d65fc880f63882 (diff) | |
download | roux-ddd4f43a391ddbdaab747cbeb749a52b277236c7.tar.gz |
change IR to IL
Diffstat (limited to 'doc')
-rw-r--r-- | doc/llvm.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/llvm.txt b/doc/llvm.txt index 9552434..811e45c 100644 --- a/doc/llvm.txt +++ b/doc/llvm.txt @@ -66,7 +66,7 @@ are a few things provided in QBE to consider. Moreover the ABI implementation in QBE has been thoroughly tested by fuzzing and manual tests. - * LLVM IR is more cluttered with memory operations. + * LLVM IL is more cluttered with memory operations. Implementing SSA construction is hard. To save its users from having to implement it, LLVM provides @@ -82,7 +82,7 @@ are a few things provided in QBE to consider. the IL by three makes it easier for the frontend writers to spot bugs in the generated code. - * LLVM IR is more cluttered with type annotations and + * LLVM IL is more cluttered with type annotations and casts. For the sake of advanced optimizations and |