aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2007-01-02-Undefined-Arg-Type.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-13 05:06:52 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-13 05:06:52 +0000
commit737ec5130ef29bd447eb3c93d6a6e980cc0b16e3 (patch)
treed31eed9ff629d582d31f0bfc9c2e8cada5a2c443 /test/Assembler/2007-01-02-Undefined-Arg-Type.ll
parent6f40790252d224e27ff85bbd962112efe7ab5f4f (diff)
downloadexternal_llvm-737ec5130ef29bd447eb3c93d6a6e980cc0b16e3.zip
external_llvm-737ec5130ef29bd447eb3c93d6a6e980cc0b16e3.tar.gz
external_llvm-737ec5130ef29bd447eb3c93d6a6e980cc0b16e3.tar.bz2
For PR1043:
Bye, Bye Booly. Remove the use of the bool type from non-upgraded test cases and from grep expressions. The parser doesn't accept it and the asm writer doesn't produce it any more. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2007-01-02-Undefined-Arg-Type.ll')
-rw-r--r--test/Assembler/2007-01-02-Undefined-Arg-Type.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Assembler/2007-01-02-Undefined-Arg-Type.ll b/test/Assembler/2007-01-02-Undefined-Arg-Type.ll
index b12a897..96e6d6c 100644
--- a/test/Assembler/2007-01-02-Undefined-Arg-Type.ll
+++ b/test/Assembler/2007-01-02-Undefined-Arg-Type.ll
@@ -5,6 +5,6 @@
implementation ; Functions:
-define bool %someFunc(i32* %tmp.71.reload, %typedef.bc_struct* %n1) {
- ret bool true
+define i1 %someFunc(i32* %tmp.71.reload, %typedef.bc_struct* %n1) {
+ ret i1 true
}