diff options
author | Chris Lattner <sabre@nondot.org> | 2012-05-27 19:37:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2012-05-27 19:37:05 +0000 |
commit | 144b61968471b8de97b9d08d7575ef742bb9dd0a (patch) | |
tree | ff1ea1e28463d4be6a1d11378eebfa9a969670ac /llvm/lib/Transforms | |
parent | f7f59b15aa1b7648c82220c8e4bf8a8e04b92926 (diff) | |
download | bcm5719-llvm-144b61968471b8de97b9d08d7575ef742bb9dd0a.tar.gz bcm5719-llvm-144b61968471b8de97b9d08d7575ef742bb9dd0a.zip |
Reimplement the intrinsic verifier to use the same table as Intrinsic::getDefinition,
making it stronger and more sane.
Delete the code from tblgen that produced the old code.
Besides being a path forward in intrinsic sanity, this also eliminates a bunch of
machine generated code that was compiled into Function.o
llvm-svn: 157545
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ObjCARC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/ObjCARC.cpp b/llvm/lib/Transforms/Scalar/ObjCARC.cpp index 15109b5bcea..9eb10391414 100644 --- a/llvm/lib/Transforms/Scalar/ObjCARC.cpp +++ b/llvm/lib/Transforms/Scalar/ObjCARC.cpp @@ -20,7 +20,7 @@ // This file also defines a simple ARC-aware AliasAnalysis. // // WARNING: This file knows about certain library functions. It recognizes them -// by name, and hardwires knowedge of their semantics. +// by name, and hardwires knowledge of their semantics. // // WARNING: This file knows about how certain Objective-C library functions are // used. Naive LLVM IR transformations which would otherwise be |