aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Constants.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-02 18:53:04 +0000
committerChris Lattner <sabre@nondot.org>2004-02-02 18:53:04 +0000
commitc07cd132cb3c6032e837f4b432c8f895ca1f1182 (patch)
treedd374d4b081dc58a37d0e1371ba034b28d6bbb89 /include/llvm/Constants.h
parentf0fd6845eee799f62ac69297c9fd7086a0156cfa (diff)
downloadexternal_llvm-c07cd132cb3c6032e837f4b432c8f895ca1f1182.zip
external_llvm-c07cd132cb3c6032e837f4b432c8f895ca1f1182.tar.gz
external_llvm-c07cd132cb3c6032e837f4b432c8f895ca1f1182.tar.bz2
Correct the method I just added to actually return false sometimes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constants.h')
-rw-r--r--include/llvm/Constants.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h
index 2d6893a..7e72879 100644
--- a/include/llvm/Constants.h
+++ b/include/llvm/Constants.h
@@ -297,7 +297,7 @@ public:
double V;
uint64_t I;
} T2;
- T2.V = Val;
+ T2.V = V;
return T1.I == T2.I;
}