From c766b8a1f4c4c5ee9d6aa558678121fa0ce3ba7c Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 23 Jan 2010 00:26:29 +0000 Subject: [PATCH] Fix a FIXME, this test folds to a constant now. llvm-svn: 94263 --- clang/test/CodeGenCXX/temp-order.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/clang/test/CodeGenCXX/temp-order.cpp b/clang/test/CodeGenCXX/temp-order.cpp index e1ef7eb260a2..05a9aed2defa 100644 --- a/clang/test/CodeGenCXX/temp-order.cpp +++ b/clang/test/CodeGenCXX/temp-order.cpp @@ -167,13 +167,10 @@ void test() { if (f5() != ORDER4(5, 3, 7, 2)) error(); -// FIXME: Clang/LLVM currently can't fold this to a constant. If the error check -// is present (since it avoids single-caller inlining). PR5645. - -// CHECK: call void @print(i8* {{.*}}, i32 1251552576) +// CHECK: call void @print(i8* {{.*}}, i32 1251552576) print("f6", f6()); -// if (f6() != ORDER6(3, 7, 11, 5, 13, 2)) -// error(); + if (f6() != ORDER6(3, 7, 11, 5, 13, 2)) + error(); }