projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc0aad2
)
add a missing break that Reid noticed.
author
Chris Lattner
<sabre@nondot.org>
Sun, 15 Jan 2006 08:40:16 +0000
(08:40 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 15 Jan 2006 08:40:16 +0000
(08:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25328
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Function.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Function.cpp
b/lib/VMCore/Function.cpp
index 3abfef9c2d56431a9e55d724bdb8c5d75af7f843..2f254f9182f81e5d8f95a3039540bccaf4bed540 100644
(file)
--- a/
lib/VMCore/Function.cpp
+++ b/
lib/VMCore/Function.cpp
@@
-265,6
+265,7
@@
unsigned Function::getIntrinsicID() const {
if (getName() == "llvm.va_copy") return Intrinsic::vacopy;
if (getName() == "llvm.va_end") return Intrinsic::vaend;
if (getName() == "llvm.va_start") return Intrinsic::vastart;
+ break;
case 'w':
if (getName() == "llvm.writeport") return Intrinsic::writeport;
if (getName() == "llvm.writeio") return Intrinsic::writeio;