commit | 608dc0803fef4c5a454c974eb890d24dd2d74a4d | [log] [tgz] |
---|---|---|
author | Christopher Lamb <christopher.lamb@gmail.com> | Fri Nov 30 06:35:48 2007 +0000 |
committer | Christopher Lamb <christopher.lamb@gmail.com> | Fri Nov 30 06:35:48 2007 +0000 |
tree | 718274aabd668b2f5d1aadc3138d21afa58861e1 | |
parent | e87cd98ad8fb36695704af0849c8edc2ed98b369 [diff] [blame] |
Doh! Check in this long overdue test fix. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44450 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Lexer/11-27-2007-FloatLiterals.c b/test/Lexer/11-27-2007-FloatLiterals.c index 68f67cf..b454d5e 100644 --- a/test/Lexer/11-27-2007-FloatLiterals.c +++ b/test/Lexer/11-27-2007-FloatLiterals.c
@@ -1,5 +1,5 @@ // RUN: clang %s -emit-llvm 2>&1 | grep 0x3BFD83C940000000 | count 2 -// RUN: clang %s -emit-llvm 2>&1 | grep 0x46A3B8B5B5056E16 | count 2 +// RUN: clang %s -emit-llvm 2>&1 | grep 2.000000e+32 | count 2 float F = 1e-19f; double D = 2e32;