OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80483bb
)
Fix a compilation error that caused the nightly test to fail.
author
Reid Spencer
<rspencer@reidspencer.com>
Tue, 13 Feb 2007 09:26:04 +0000
(09:26 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Tue, 13 Feb 2007 09:26:04 +0000
(09:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34239
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/InstrTypes.h
patch
|
blob
|
history
diff --git
a/include/llvm/InstrTypes.h
b/include/llvm/InstrTypes.h
index
0fff238
..
ce5885f
100644
(file)
--- a/
include/llvm/InstrTypes.h
+++ b/
include/llvm/InstrTypes.h
@@
-95,7
+95,7
@@
protected:
: Instruction(Ty, iType, &Op, 1, Name, IB), Op(V, this) {
}
UnaryInstruction(const Type *Ty, unsigned iType, Value *V,
- const char *Name
= 0
, BasicBlock *IAE)
+ const char *Name, BasicBlock *IAE)
: Instruction(Ty, iType, &Op, 1, Name, IAE), Op(V, this) {
}
public: