diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-13 05:06:52 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-13 05:06:52 +0000 |
commit | 737ec5130ef29bd447eb3c93d6a6e980cc0b16e3 (patch) | |
tree | d31eed9ff629d582d31f0bfc9c2e8cada5a2c443 /test/CodeGen/ARM/fcopysign.ll | |
parent | 6f40790252d224e27ff85bbd962112efe7ab5f4f (diff) |
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/CodeGen/ARM/fcopysign.ll')
-rw-r--r-- | test/CodeGen/ARM/fcopysign.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/fcopysign.ll b/test/CodeGen/ARM/fcopysign.ll index 331ab93d0e..66b639e996 100644 --- a/test/CodeGen/ARM/fcopysign.ll +++ b/test/CodeGen/ARM/fcopysign.ll @@ -2,7 +2,7 @@ define csretcc void %__divsc3({ float, float }* %agg.result, float %a, float %b, float %c, float %d) { entry: - br bool false, label %bb, label %cond_next375 + br i1 false, label %bb, label %cond_next375 bb: ; preds = %entry %tmp81 = tail call float %copysignf( float 0x7FF0000000000000, float %c ) ; <float> [#uses=1] @@ -16,6 +16,6 @@ cond_next375: ; preds = %bb, %entry declare float %fabsf(float) -declare bool %llvm.isunordered.f32(float, float) +declare i1 %llvm.isunordered.f32(float, float) declare float %copysignf(float, float) |