diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-09-03 00:35:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-03 00:35:23 +0000 |
commit | 3e7cf38810ec39be938b635ddd41e3cefde86883 (patch) | |
tree | 55cd1d60c7a614261b40940fe1141187b1a476f1 /test/CodeGenCXX/reference-in-blocks.cpp | |
parent | 5d1d7ae120c2c8e6cba5d2a712b33500a5aecc10 (diff) |
Revert "Another i1 vs. i8 type mismatch issue. This time", it breaks some projects.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/reference-in-blocks.cpp')
-rw-r--r-- | test/CodeGenCXX/reference-in-blocks.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGenCXX/reference-in-blocks.cpp b/test/CodeGenCXX/reference-in-blocks.cpp index f08ef56880..388ec7c4bb 100644 --- a/test/CodeGenCXX/reference-in-blocks.cpp +++ b/test/CodeGenCXX/reference-in-blocks.cpp @@ -41,13 +41,3 @@ int main() { a->F(); return 0; } - -// rdar://8382559 -namespace radar8382559 { - void func(bool& outHasProperty); - - void test() { - __attribute__((__blocks__(byref))) bool hasProperty = false; - func(hasProperty); - } -} |